Home | History | Annotate | Download | only in lib
      1 <project>
      2   <modelVersion>4.0.0</modelVersion>
      3   <parent>
      4     <groupId>org.sonatype.oss</groupId>
      5     <artifactId>oss-parent</artifactId>
      6     <version>4</version>
      7   </parent>
      8   <groupId>com.almworks.sqlite4java</groupId>
      9   <artifactId>sqlite4java</artifactId>
     10   <packaging>jar</packaging>
     11   <name>sqlite4java</name>
     12   <version>0.282</version>
     13   <description>Minimalistic high-performance Java wrapper for SQLite</description>
     14   <url>http://code.google.com/p/sqlite4java</url>
     15   <developers>
     16     <developer>
     17       <id>sereda</id>
     18       <name>Igor Sereda</name>
     19     </developer>
     20   </developers>
     21   <licenses>
     22     <license>
     23       <name>The Apache Software License, Version 2.0</name>
     24       <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
     25       <distribution>repo</distribution>
     26     </license>
     27   </licenses>
     28   <organization>
     29     <name>ALM Works</name>
     30     <url>http://almworks.com</url>
     31   </organization>
     32   <issueManagement> 
     33     <system>Google code</system> 
     34     <url>http://code.google.com/p/sqlite4java/issues/list</url> 
     35   </issueManagement> 
     36   <scm>
     37     <connection>scm:svn:http://sqlite4java.googlecode.com/svn/trunk/</connection>
     38     <developerConnection>scm:svn:https://sqlite4java.googlecode.com/svn/trunk/</developerConnection>
     39     <url>http://sqlite4java.googlecode.com/svn/trunk/</url>
     40   </scm>
     41   <dependencies>
     42     <dependency>
     43       <groupId>junit</groupId>
     44       <artifactId>junit</artifactId>
     45       <version>[3.8,)</version>
     46       <scope>test</scope>
     47     </dependency>
     48   </dependencies>
     49   <build>
     50     <plugins>
     51       <plugin>
     52         <groupId>org.apache.maven.plugins</groupId>
     53         <artifactId>maven-gpg-plugin</artifactId>
     54         <executions>
     55           <execution>
     56             <id>sign-artifacts</id>
     57             <phase>verify</phase>
     58             <goals>
     59               <goal>sign</goal>
     60             </goals>
     61           </execution>
     62         </executions>
     63       </plugin>
     64       <plugin>
     65         <groupId>org.codehaus.mojo</groupId>
     66         <artifactId>build-helper-maven-plugin</artifactId>
     67         <version>1.3</version>
     68         <executions>
     69           <execution>
     70             <id>add-jar</id>
     71             <phase>deploy</phase>
     72             <goals>
     73               <goal>attach-artifact</goal>
     74             </goals>
     75             <configuration>
     76               <artifacts>
     77                 <artifact>
     78                   <file>sqlite4java-282/sqlite4java-sources.jar</file>
     79               	  <type>jar</type>
     80 		</artifact>
     81                 <artifact>
     82                   <file>sqlite4java-282/sqlite4java-javadoc.jar</file>
     83               	  <type>jar</type>
     84 		</artifact>
     85               </artifacts>
     86             </configuration>
     87           </execution>
     88         </executions>
     89        </plugin> 
     90     </plugins>
     91   </build>
     92 </project>
     93