Home | History | Annotate | Download | only in 3.4.0
      1 <project xmlns="http://maven.apache.org/POM/4.0.0"
      2          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      3          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
      4   http://maven.apache.org/maven-v4_0_0.xsd">
      5   <modelVersion>4.0.0</modelVersion>
      6   <groupId>net.java.dev.jna</groupId>
      7   <artifactId>platform</artifactId>
      8   <packaging>jar</packaging>
      9   <version>3.4.0</version>
     10   <name>Java Native Access Platform</name>
     11   <description>Java Native Access Platform</description>
     12   <url>https://github.com/twall/jna</url>
     13 
     14   <licenses>
     15       <license>
     16           <name>LGPL, version 2.1</name>
     17           <url>http://creativecommons.org/licenses/LGPL/2.1/</url>
     18           <distribution>repo</distribution>
     19       </license>
     20   </licenses>
     21 
     22 
     23   <distributionManagement>
     24     <repository>
     25       <uniqueVersion>false</uniqueVersion>
     26       <id>java.net-m2-repository</id>
     27       <url>java-net:/maven2-repository~svn/trunk/repository/</url>
     28     </repository>
     29   </distributionManagement>
     30 
     31   <scm>
     32     <connection>scm:git:https://github.com/twall/jna</connection>
     33     <developerConnection>scm:git:ssh://git (a] github.com/twall/jna.git</developerConnection>
     34     <url>https://github.com/twall/jna</url>
     35   </scm>
     36 
     37   <developers>
     38     <developer>
     39       <id>twall</id>
     40       <name>Timotyh Wall</name>
     41       <roles>
     42         <role>Owner</role>
     43       </roles>
     44     </developer>
     45   </developers>
     46 
     47   <build>
     48     <plugins>
     49       <!-- fake out maven and install the binary artifact -->
     50       <plugin>
     51         <groupId>org.jvnet.maven-antrun-extended-plugin</groupId>
     52         <artifactId>maven-antrun-extended-plugin</artifactId>
     53         <executions>
     54           <execution>
     55             <phase>package</phase>
     56             <goals>
     57               <goal>run</goal>
     58             </goals>
     59             <configuration>
     60               <tasks>
     61                 <!--<ant dir="." target="dist" />-->
     62                 <attachArtifact file="dist/jna.jar"/>
     63                 <attachArtifact file="dist/platform.jar" classifier="platform" type="jar"/>
     64                 <attachArtifact file="dist/src-mvn.zip" classifier="sources" type="jar"/>
     65               </tasks>
     66             </configuration>
     67           </execution>
     68         </executions>
     69       </plugin>
     70     </plugins>
     71     <extensions>
     72       <extension>
     73         <groupId>org.jvnet.wagon-svn</groupId>
     74         <artifactId>wagon-svn</artifactId>
     75         <version>1.12</version>
     76       </extension>
     77     </extensions>
     78   </build>
     79 </project>