Ad wagon for deploy
[annotation-processors.git] / pom.xml
1 <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/xsd/maven-4.0.0.xsd">
2   <modelVersion>4.0.0</modelVersion>
3   <groupId>com.indexdata.annotations.processor</groupId>
4   <artifactId>jaxb-index-generator</artifactId>
5   <version>0.0.1-SNAPSHOT</version>
6   <name>JAXB Index Generator</name>
7   <build>
8     <sourceDirectory>src/main/java</sourceDirectory>
9     <plugins>
10       <plugin>
11         <artifactId>maven-compiler-plugin</artifactId>
12         <version>3.1</version>
13         <configuration>
14           <source>1.6</source>
15           <target>1.6</target>
16           <compilerArgument>-proc:none</compilerArgument>
17           <encoding>UTF-8</encoding>
18           <generatedTestSourcesDirectory>generated-sources</generatedTestSourcesDirectory>
19         </configuration>
20       </plugin>
21     </plugins>
22     <extensions>
23       <extension>
24         <groupId>org.apache.maven.wagon</groupId>
25         <artifactId>wagon-ssh</artifactId>
26         <version>1.0-beta-6</version>
27       </extension>
28       <extension>
29         <groupId>org.apache.maven.wagon</groupId>
30         <artifactId>wagon-ssh-external</artifactId>
31         <version>2.2</version>
32       </extension>
33     </extensions>
34   </build>
35   <repositories>
36     <repository>
37       <id>maven.indexdata.com</id>
38       <name>Indexdata Maven Repository</name>
39       <url>http://maven.indexdata.com/</url>
40       <layout>default</layout>
41     </repository>
42   </repositories>
43   <pluginRepositories>
44   </pluginRepositories>
45   <properties>
46     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47   </properties> 
48   <distributionManagement>
49     <repository>
50       <uniqueVersion>false</uniqueVersion>
51       <id>id-maven-repo</id>
52       <name>Index Data Maven Repository</name>
53       <url>scp://maven.indexdata.com:222/var/www/maven/repository</url>
54     </repository>
55     <!--
56         <site>
57           <id>id-website</id>
58           <url>scpexe://www.indexdata.com/var/www/software/LUI/</url>
59         </site>
60         -->
61   </distributionManagement>
62   <scm>
63     <connection>scm:git:ssh://git.indexdata.com:222/home/git/pub/AnnotationProcessor</connection>
64     <url>http://gitid.indexdata.com/?p=AnnotationProcessor.git</url>
65     <tag>HEAD</tag>
66   </scm>
67 </project>