Fix beehive-jdbc-control, exclude *.java from jars (placed there by annotation processors)

pull/2/head
moparisthebest 2014-04-21 15:26:05 -04:00
parent 2471981dbc
commit c050957b1e
2 changed files with 11 additions and 4 deletions

View File

@ -44,7 +44,4 @@
<artifactId>xbean</artifactId>
</dependency>
</dependencies>
<build>
<sourceDirectory>../system-controls/src/jdbc</sourceDirectory>
</build>
</project>

12
pom.xml
View File

@ -217,13 +217,23 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<version>3.1</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
<debug>true</debug>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>