Home | History | Annotate | Download | only in 7.1.0_r7
      1 <?xml version="1.0" encoding="UTF-8"?>
      2 
      3 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
      4   <modelVersion>4.0.0</modelVersion>
      5 
      6   <parent>
      7     <groupId>org.sonatype.oss</groupId>
      8     <artifactId>oss-parent</artifactId>
      9     <version>7</version>
     10   </parent>
     11 
     12   <groupId>com.jakewharton.android.repackaged</groupId>
     13   <artifactId>libcore-dex</artifactId>
     14   <version>7.1.0_r7</version>
     15 
     16   <name>platform/libcore dex</name>
     17   <description>A standalone packaging of AOSP's platform/libcore dex library.</description>
     18 
     19   <scm>
     20     <url>http://github.com/JakeWharton/libcore-dex</url>
     21     <connection>scm:git:git://github.com/JakeWharton/libcore-dex.git</connection>
     22     <developerConnection>scm:git:git (a] github.com:JakeWharton/libcore-dex.git</developerConnection>
     23   </scm>
     24 
     25   <licenses>
     26     <license>
     27       <name>Apache License Version 2.0</name>
     28       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
     29       <distribution>repo</distribution>
     30     </license>
     31   </licenses>
     32 
     33   <properties>
     34     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     35     <java.version>1.7</java.version>
     36   </properties>
     37 
     38   <dependencies>
     39     <dependency>
     40       <groupId>junit</groupId>
     41       <artifactId>junit</artifactId>
     42       <version>4.12</version>
     43       <scope>test</scope>
     44     </dependency>
     45   </dependencies>
     46 
     47   <build>
     48     <sourceDirectory>platform_libcore/dex/src/main/java</sourceDirectory>
     49     <testSourceDirectory>platform_libcore/dex/src/test/java</testSourceDirectory>
     50 
     51     <plugins>
     52       <plugin>
     53         <groupId>org.codehaus.mojo</groupId>
     54         <artifactId>exec-maven-plugin</artifactId>
     55         <version>1.5.0</version>
     56         <inherited>false</inherited>
     57         <executions>
     58           <execution>
     59             <id>git-submodule-init</id>
     60             <phase>initialize</phase>
     61             <configuration>
     62               <executable>git</executable>
     63               <arguments>
     64                 <argument>submodule</argument>
     65                 <argument>update</argument>
     66                 <argument>--init</argument>
     67                 <argument>--recursive</argument>
     68               </arguments>
     69             </configuration>
     70             <goals>
     71               <goal>exec</goal>
     72             </goals>
     73           </execution>
     74         </executions>
     75       </plugin>
     76       <plugin>
     77         <groupId>org.apache.maven.plugins</groupId>
     78         <artifactId>maven-compiler-plugin</artifactId>
     79         <version>3.3</version>
     80         <configuration>
     81           <source>${java.version}</source>
     82           <target>${java.version}</target>
     83         </configuration>
     84       </plugin>
     85     </plugins>
     86   </build>
     87 </project>
     88