Fixed AVAS vulnerabilites
[platform/upstream/libphonenumber.git] / tools / java / common / pom.xml
1 <?xml version="1.0"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5
6   <parent>
7     <artifactId>tools</artifactId>
8     <groupId>com.google.i18n.phonenumbers</groupId>
9     <version>1.0-SNAPSHOT</version>
10   </parent>
11
12   <groupId>com.google.i18n.phonenumbers.tools</groupId>
13   <artifactId>common-build</artifactId>
14   <version>1.0-SNAPSHOT</version>
15   <name>Libphonenumber common library for build tools</name>
16
17   <build>
18     <sourceDirectory>src</sourceDirectory>
19     <testSourceDirectory>test</testSourceDirectory>
20     <plugins>
21       <plugin>
22         <groupId>org.apache.maven.plugins</groupId>
23         <artifactId>maven-compiler-plugin</artifactId>
24         <configuration>
25           <source>1.5</source>
26           <target>1.5</target>
27         </configuration>
28       </plugin>
29       <!-- Add ../../../java/libphonenumber/src/ to make Phonemetadata.java available to the source
30            directories. -->
31       <plugin>
32         <groupId>org.codehaus.mojo</groupId>
33         <artifactId>build-helper-maven-plugin</artifactId>
34         <executions>
35           <execution>
36             <id>add-source</id>
37             <phase>generate-sources</phase>
38             <goals>
39               <goal>add-source</goal>
40             </goals>
41             <configuration>
42               <sources>
43                 <source>../../../java/libphonenumber/src/</source>
44               </sources>
45             </configuration>
46           </execution>
47         </executions>
48       </plugin>
49     </plugins>
50   </build>
51
52   <dependencies>
53     <dependency>
54       <groupId>junit</groupId>
55       <artifactId>junit</artifactId>
56       <version>4.13.1</version>
57       <scope>test</scope>
58     </dependency>
59   </dependencies>
60
61 </project>