Move jdbc dependencies into the default war

Signed-off-by: Andrew DeMaria <lostonamountain@gmail.com>
master
Andrew DeMaria 7 years ago
parent dbf5841f8b
commit e8e229cf8b
No known key found for this signature in database
GPG Key ID: 0A3F5E91F8364EDF
  1. 44
      airsonic-main/pom.xml

@ -465,6 +465,24 @@
<version>1.5.5</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.1.4</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.43</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.1.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
@ -559,31 +577,5 @@
<boot.artifact.excludes>spring-boot-starter-tomcat</boot.artifact.excludes>
</properties>
</profile>
<profile>
<id>jdbc-extra</id>
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.1.4</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.43</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>2.1.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<finalName>airsonic-jdbc-extra</finalName>
</build>
</profile>
</profiles>
</project>

Loading…
Cancel
Save