rely on IDE tools instead of Maven plugins for reporting
[svjatoslav_commons.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>svjatoslavcommons</artifactId>
6     <version>1.5-SNAPSHOT</version>
7     <packaging>jar</packaging>
8     <name>Svjatoslav Commons</name>
9     <description>Collection many small but commonly useful functionalities</description>
10     <url>http://www2.svjatoslav.eu/gitbrowse/svjatoslav_commons/doc/index.html</url>
11
12     <licenses>
13         <license>
14             <name>version 3 of the GNU Lesser General Public License or later</name>
15             <url>https://www.gnu.org/licenses/lgpl.html</url>
16             <distribution>repo</distribution>
17         </license>
18     </licenses>
19
20     <properties>
21         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
23     </properties>
24
25     <build>
26         <plugins>
27             <plugin>
28                 <groupId>org.apache.maven.plugins</groupId>
29                 <artifactId>maven-compiler-plugin</artifactId>
30                 <version>2.3.2</version>
31                 <configuration>
32                     <source>1.8</source>
33                     <target>1.8</target>
34                     <encoding>UTF-8</encoding>
35                 </configuration>
36             </plugin>
37
38             <plugin>
39                 <groupId>org.apache.maven.plugins</groupId>
40                 <artifactId>maven-source-plugin</artifactId>
41                 <version>2.2.1</version>
42                 <executions>
43                     <execution>
44                         <id>attach-sources</id>
45                         <goals>
46                             <goal>jar</goal>
47                         </goals>
48                     </execution>
49                 </executions>
50             </plugin>
51
52             <plugin>
53                 <groupId>org.apache.maven.plugins</groupId>
54                 <artifactId>maven-javadoc-plugin</artifactId>
55                 <version>2.9</version>
56                 <executions>
57                     <execution>
58                         <id>attach-javadocs</id>
59                         <goals>
60                             <goal>jar</goal>
61                         </goals>
62                     </execution>
63                 </executions>
64             </plugin>
65
66
67         </plugins>
68
69         <extensions>
70             <extension>
71                 <groupId>org.apache.maven.wagon</groupId>
72                 <artifactId>wagon-ssh-external</artifactId>
73                 <version>2.6</version>
74             </extension>
75         </extensions>
76     </build>
77
78     <dependencies>
79         <dependency>
80             <groupId>junit</groupId>
81             <artifactId>junit</artifactId>
82             <version>4.8.1</version>
83             <scope>test</scope>
84         </dependency>
85
86         <dependency>
87             <groupId>javax.servlet</groupId>
88             <artifactId>servlet-api</artifactId>
89             <version>2.5</version>
90             <scope>provided</scope>
91         </dependency>
92     </dependencies>
93
94     <distributionManagement>
95         <snapshotRepository>
96             <id>svjatoslav.eu</id>
97             <name>svjatoslav.eu</name>
98             <url>scpexe://svjatoslav.eu/var/www/svjatoslav.eu/maven</url>
99         </snapshotRepository>
100         <repository>
101             <id>svjatoslav.eu</id>
102             <name>svjatoslav.eu</name>
103             <url>scpexe://svjatoslav.eu/var/www/svjatoslav.eu/maven</url>
104         </repository>
105     </distributionManagement>
106
107     <scm>
108         <connection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/svjatoslav_commons.git</connection>
109         <developerConnection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/svjatoslav_commons.git
110         </developerConnection>
111     </scm>
112
113 </project>