Added possibility to skip token stream until the end
[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             <plugin>
66                 <groupId>org.apache.maven.plugins</groupId>
67                 <artifactId>maven-release-plugin</artifactId>
68                 <version>2.5.2</version>
69                 <dependencies>
70                     <dependency>
71                         <groupId>org.apache.maven.scm</groupId>
72                         <artifactId>maven-scm-provider-gitexe</artifactId>
73                         <version>1.9.4</version>
74                     </dependency>
75                 </dependencies>
76             </plugin>
77
78
79         </plugins>
80
81         <extensions>
82             <extension>
83                 <groupId>org.apache.maven.wagon</groupId>
84                 <artifactId>wagon-ssh-external</artifactId>
85                 <version>2.6</version>
86             </extension>
87         </extensions>
88     </build>
89
90     <dependencies>
91         <dependency>
92             <groupId>junit</groupId>
93             <artifactId>junit</artifactId>
94             <version>4.8.1</version>
95             <scope>test</scope>
96         </dependency>
97
98         <dependency>
99             <groupId>javax.servlet</groupId>
100             <artifactId>servlet-api</artifactId>
101             <version>2.5</version>
102             <scope>provided</scope>
103         </dependency>
104     </dependencies>
105
106     <distributionManagement>
107         <snapshotRepository>
108             <id>svjatoslav.eu</id>
109             <name>svjatoslav.eu</name>
110             <url>scpexe://svjatoslav.eu/var/www/svjatoslav.eu/maven</url>
111         </snapshotRepository>
112         <repository>
113             <id>svjatoslav.eu</id>
114             <name>svjatoslav.eu</name>
115             <url>scpexe://svjatoslav.eu/var/www/svjatoslav.eu/maven</url>
116         </repository>
117     </distributionManagement>
118
119     <scm>
120         <connection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/svjatoslav_commons.git</connection>
121         <developerConnection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/svjatoslav_commons.git
122         </developerConnection>
123     </scm>
124
125 </project>