added JavaDoc to web site
[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>3.0.1</version>
68                 <executions>
69                     <execution>
70                         <id>attach-javadocs</id>
71                         <goals>
72                             <goal>jar</goal>
73                         </goals>
74                     </execution>
75                 </executions>
76                 <configuration>
77                     <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
78                 </configuration>
79             </plugin>
80
81             <plugin>
82                 <groupId>org.apache.maven.plugins</groupId>
83                 <artifactId>maven-resources-plugin</artifactId>
84                 <version>2.4.3</version>
85                 <configuration>
86                     <encoding>UTF-8</encoding>
87                 </configuration>
88             </plugin>
89
90         </plugins>
91
92         <extensions>
93             <extension>
94                 <groupId>org.apache.maven.wagon</groupId>
95                 <artifactId>wagon-ssh-external</artifactId>
96                 <version>2.6</version>
97             </extension>
98         </extensions>
99     </build>
100
101
102     <distributionManagement>
103         <snapshotRepository>
104             <id>svjatoslav.eu</id>
105             <name>svjatoslav.eu</name>
106             <url>scpexe://svjatoslav.eu:10006/srv/maven</url>
107         </snapshotRepository>
108         <repository>
109             <id>svjatoslav.eu</id>
110             <name>svjatoslav.eu</name>
111             <url>scpexe://svjatoslav.eu:10006/srv/maven</url>
112         </repository>
113     </distributionManagement>
114
115     <repositories>
116         <repository>
117             <id>svjatoslav.eu</id>
118             <name>Svjatoslav repository</name>
119             <url>http://www2.svjatoslav.eu/maven/</url>
120         </repository>
121     </repositories>
122
123     <scm>
124         <connection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/sixth-data.git</connection>
125         <developerConnection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/sixth-data.git
126         </developerConnection>
127     </scm>
128
129
130 </project>