0a5ff33699cdb2631901a50d48f69ce30a46a063
[sixth-data.git] / pom.xml
1 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4     <groupId>eu.svjatoslav</groupId>
5     <artifactId>sixth-data</artifactId>
6     <version>1.0-SNAPSHOT</version>
7     <name>Sixth data</name>
8     <description>Sixth data</description>
9
10     <properties>
11         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13     </properties>
14
15     <organization>
16         <name>svjatoslav.eu</name>
17         <url>http://svjatoslav.eu</url>
18     </organization>
19
20     <dependencies>
21         <dependency>
22             <groupId>junit</groupId>
23             <artifactId>junit</artifactId>
24             <version>4.8.1</version>
25             <scope>test</scope>
26         </dependency>
27
28         <dependency>
29             <groupId>eu.svjatoslav</groupId>
30             <artifactId>javainspect</artifactId>
31             <version>1.5</version>
32             <scope>test</scope>
33         </dependency>
34     </dependencies>
35
36     <build>
37         <plugins>
38             <plugin>
39                 <groupId>org.apache.maven.plugins</groupId>
40                 <artifactId>maven-compiler-plugin</artifactId>
41                 <version>2.3.2</version>
42                 <configuration>
43                     <source>1.8</source>
44                     <target>1.8</target>
45                     <optimize>true</optimize>
46                     <encoding>UTF-8</encoding>
47                 </configuration>
48             </plugin>
49
50             <plugin>
51                 <groupId>org.apache.maven.plugins</groupId>
52                 <artifactId>maven-source-plugin</artifactId>
53                 <version>2.2.1</version>
54                 <executions>
55                     <execution>
56                         <id>attach-sources</id>
57                         <goals>
58                             <goal>jar</goal>
59                         </goals>
60                     </execution>
61                 </executions>
62             </plugin>
63
64             <plugin>
65                 <groupId>org.apache.maven.plugins</groupId>
66                 <artifactId>maven-javadoc-plugin</artifactId>
67                 <version>2.9</version>
68                 <executions>
69                     <execution>
70                         <id>attach-javadocs</id>
71                         <goals>
72                             <goal>jar</goal>
73                         </goals>
74                     </execution>
75                 </executions>
76             </plugin>
77
78             <plugin>
79                 <groupId>org.apache.maven.plugins</groupId>
80                 <artifactId>maven-resources-plugin</artifactId>
81                 <version>2.4.3</version>
82                 <configuration>
83                     <encoding>UTF-8</encoding>
84                 </configuration>
85             </plugin>
86
87         </plugins>
88
89         <extensions>
90             <extension>
91                 <groupId>org.apache.maven.wagon</groupId>
92                 <artifactId>wagon-ssh-external</artifactId>
93                 <version>2.6</version>
94             </extension>
95         </extensions>
96     </build>
97
98
99     <distributionManagement>
100         <snapshotRepository>
101             <id>svjatoslav.eu</id>
102             <name>svjatoslav.eu</name>
103             <url>scpexe://svjatoslav.eu:10006/srv/maven</url>
104         </snapshotRepository>
105         <repository>
106             <id>svjatoslav.eu</id>
107             <name>svjatoslav.eu</name>
108             <url>scpexe://svjatoslav.eu:10006/srv/maven</url>
109         </repository>
110     </distributionManagement>
111
112     <repositories>
113         <repository>
114             <id>svjatoslav.eu</id>
115             <name>Svjatoslav repository</name>
116             <url>http://www2.svjatoslav.eu/maven/</url>
117         </repository>
118     </repositories>
119
120     <scm>
121         <connection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/sixth-data.git</connection>
122         <developerConnection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/sixth-data.git
123         </developerConnection>
124     </scm>
125
126
127 </project>