[maven-release-plugin] prepare for next development iteration
[sixth-3d.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>sixth-3d</artifactId>
5     <version>1.2-SNAPSHOT</version>
6     <name>Sixth 3D</name>
7     <description>3D engine</description>
8
9     <properties>
10         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
12     </properties>
13
14     <organization>
15         <name>svjatoslav.eu</name>
16         <url>http://svjatoslav.eu</url>
17     </organization>
18
19     <dependencies>
20         <dependency>
21             <groupId>junit</groupId>
22             <artifactId>junit</artifactId>
23             <version>4.8.1</version>
24             <scope>test</scope>
25         </dependency>
26
27         <dependency>
28             <groupId>eu.svjatoslav</groupId>
29             <artifactId>javainspect</artifactId>
30             <version>1.5</version>
31             <scope>test</scope>
32         </dependency>
33     </dependencies>
34
35     <build>
36         <plugins>
37             <plugin>
38                 <groupId>org.apache.maven.plugins</groupId>
39                 <artifactId>maven-compiler-plugin</artifactId>
40                 <version>2.3.2</version>
41                 <configuration>
42                     <source>1.8</source>
43                     <target>1.8</target>
44                     <optimize>true</optimize>
45                     <encoding>UTF-8</encoding>
46                 </configuration>
47             </plugin>
48
49             <plugin>
50                 <groupId>org.apache.maven.plugins</groupId>
51                 <artifactId>maven-source-plugin</artifactId>
52                 <version>2.2.1</version>
53                 <executions>
54                     <execution>
55                         <id>attach-sources</id>
56                         <goals>
57                             <goal>jar</goal>
58                         </goals>
59                     </execution>
60                 </executions>
61             </plugin>
62
63             <plugin>
64                 <groupId>org.apache.maven.plugins</groupId>
65                 <artifactId>maven-javadoc-plugin</artifactId>
66                 <version>2.9</version>
67                 <executions>
68                     <execution>
69                         <id>attach-javadocs</id>
70                         <goals>
71                             <goal>jar</goal>
72                         </goals>
73                     </execution>
74                 </executions>
75             </plugin>
76
77             <plugin>
78                 <groupId>org.apache.maven.plugins</groupId>
79                 <artifactId>maven-resources-plugin</artifactId>
80                 <version>2.4.3</version>
81                 <configuration>
82                     <encoding>UTF-8</encoding>
83                 </configuration>
84             </plugin>
85
86             <plugin>
87                 <groupId>org.apache.maven.plugins</groupId>
88                 <artifactId>maven-release-plugin</artifactId>
89                 <version>2.5.2</version>
90                 <dependencies>
91                     <dependency>
92                         <groupId>org.apache.maven.scm</groupId>
93                         <artifactId>maven-scm-provider-gitexe</artifactId>
94                         <version>1.9.4</version>
95                     </dependency>
96                 </dependencies>
97             </plugin>
98         </plugins>
99
100         <extensions>
101             <extension>
102                 <groupId>org.apache.maven.wagon</groupId>
103                 <artifactId>wagon-ssh-external</artifactId>
104                 <version>2.6</version>
105             </extension>
106         </extensions>
107     </build>
108
109
110     <distributionManagement>
111         <snapshotRepository>
112             <id>svjatoslav.eu</id>
113             <name>svjatoslav.eu</name>
114             <url>scpexe://svjatoslav.eu/var/www/svjatoslav.eu/maven</url>
115         </snapshotRepository>
116         <repository>
117             <id>svjatoslav.eu</id>
118             <name>svjatoslav.eu</name>
119             <url>scpexe://svjatoslav.eu/var/www/svjatoslav.eu/maven</url>
120         </repository>
121     </distributionManagement>
122
123     <repositories>
124         <repository>
125             <id>svjatoslav.eu</id>
126             <name>Svjatoslav repository</name>
127             <url>http://www2.svjatoslav.eu/maven/</url>
128         </repository>
129     </repositories>
130
131     <scm>
132         <connection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/sixth-3d.git</connection>
133         <developerConnection>scm:git:ssh://git@svjatoslav.eu/home/git/repositories/sixth-3d.git</developerConnection>
134       <tag>HEAD</tag>
135   </scm>
136
137 </project>