Rename the project artifacts
[yaz4j-moved-to-github.git] / any / pom.xml
1 <project>
2   <modelVersion>4.0.0</modelVersion>
3   <parent>
4     <groupId>org.yaz4j</groupId>
5     <artifactId>yaz4j-lib</artifactId>
6     <version>1.2-SNAPSHOT</version>
7   </parent>
8   <artifactId>yaz4j-any</artifactId>
9   <name>yaz4j-any</name>
10   <packaging>jar</packaging>
11
12   <build>
13     <sourceDirectory>../src/main/java</sourceDirectory>
14     <plugins>
15      <plugin>
16         <groupId>org.codehaus.mojo</groupId>
17         <artifactId>build-helper-maven-plugin</artifactId>
18         <executions>
19           <execution>
20             <id>include-generated-sources</id>
21             <phase>generate-sources</phase>
22             <goals><goal>add-source</goal></goals>
23             <configuration>
24               <sources><source>../target/generated-sources/java</source></sources>
25             </configuration>
26           </execution>
27         </executions>
28       </plugin>
29       <plugin>
30         <groupId>org.apache.maven.plugins</groupId>
31         <artifactId>maven-compiler-plugin</artifactId>
32         <configuration>
33           <encoding>UTF-8</encoding>
34           <source>1.6</source>
35           <target>1.6</target>
36           <showDeprecation>true</showDeprecation>
37           <showWarnings>true</showWarnings>
38         </configuration>
39       </plugin>
40     </plugins>
41   </build>
42
43 </project>