Skip to content

Commit f413a92

Browse files
authored
Modified pom.xml
2 parents b67c68e + dd011cb commit f413a92

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

pom.xml

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,22 @@
5353
<groupId>org.apache.maven.plugins</groupId>
5454
<artifactId>maven-compiler-plugin</artifactId>
5555
<version>3.7.0</version>
56-
<configuration>
56+
<!-- <configuration>
5757
<source>1.8</source>
5858
<target>1.8</target>
5959
<encoding>UTF-8</encoding>
60+
</configuration> -->
61+
</plugin>
62+
<plugin>
63+
<groupId>org.apache.maven.plugins</groupId>
64+
<artifactId>maven-jar-plugin</artifactId>
65+
<version>3.1.1</version>
66+
<configuration>
67+
<archive>
68+
<manifestEntries>
69+
<Automatic-Module-Name>com.goxr3plus.streamplayer</Automatic-Module-Name>
70+
</manifestEntries>
71+
</archive>
6072
</configuration>
6173
</plugin>
6274
</plugins>
@@ -85,6 +97,16 @@
8597
<groupId>com.googlecode.soundlibs</groupId>
8698
<artifactId>mp3spi</artifactId>
8799
<version>1.9.5.4</version>
100+
<exclusions>
101+
<exclusion>
102+
<!--
103+
Exclude tritonus-share because its all contents is contained in tritonus-all and
104+
this dependency simply causes nothing but package split
105+
-->
106+
<groupId>com.googlecode.soundlibs</groupId>
107+
<artifactId>tritonus-share</artifactId>
108+
</exclusion>
109+
</exclusions>
88110
</dependency>
89111
<dependency>
90112
<groupId>org.jflac</groupId>
@@ -100,6 +122,12 @@
100122
<groupId>com.googlecode.soundlibs</groupId>
101123
<artifactId>tritonus-all</artifactId>
102124
<version>0.3.7.2</version>
125+
<exclusions>
126+
<exclusion>
127+
<groupId>com.googlecode.soundlibs</groupId>
128+
<artifactId>tritonus-share</artifactId>
129+
</exclusion>
130+
</exclusions>
103131
</dependency>
104132
</dependencies>
105133

0 commit comments

Comments
 (0)