switched to HTTPS
[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.8-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>3.0.1</version>
55                 <executions>
56                     <execution>
57                         <id>attach-javadocs</id>
58                         <goals>
59                             <goal>jar</goal>
60                         </goals>
61                     </execution>
62                 </executions>
63                 <configuration>
64                     <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
65                 </configuration>
66             </plugin>
67
68             <plugin>
69                 <groupId>org.apache.maven.plugins</groupId>
70                 <artifactId>maven-release-plugin</artifactId>
71                 <version>2.5.2</version>
72                 <dependencies>
73                     <dependency>
74                         <groupId>org.apache.maven.scm</groupId>
75                         <artifactId>maven-scm-provider-gitexe</artifactId>
76                         <version>1.9.4</version>
77                     </dependency>
78                 </dependencies>
79             </plugin>
80
81
82         </plugins>
83
84         <extensions>
85             <extension>
86                 <groupId>org.apache.maven.wagon</groupId>
87                 <artifactId>wagon-ssh-external</artifactId>
88                 <version>2.6</version>
89             </extension>
90         </extensions>
91     </build>
92
93     <dependencies>
94         <dependency>
95             <groupId>junit</groupId>
96             <artifactId>junit</artifactId>
97             <version>4.8.1</version>
98             <scope>test</scope>
99         </dependency>
100
101         <dependency>
102             <groupId>javax.servlet</groupId>
103             <artifactId>servlet-api</artifactId>
104             <version>2.5</version>
105             <scope>provided</scope>
106         </dependency>
107     </dependencies>
108
109     <distributionManagement>
110         <snapshotRepository>
111             <id>svjatoslav.eu</id>
112             <name>svjatoslav.eu</name>
113             <url>scpexe://svjatoslav.eu:10006/srv/maven</url>
114         </snapshotRepository>
115         <repository>
116             <id>svjatoslav.eu</id>
117             <name>svjatoslav.eu</name>
118             <url>scpexe://svjatoslav.eu:10006/srv/maven</url>
119         </repository>
120     </distributionManagement>
121
122     <scm>
123         <connection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/svjatoslav_commons.git</connection>
124         <developerConnection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/svjatoslav_commons.git
125         </developerConnection>
126         <tag>HEAD</tag>
127   </scm>
128
129 </project>