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