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