Improved web indexer. Fixed maven URL.
[meviz.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>meviz</artifactId>
5     <version>1.2-SNAPSHOT</version>
6     <packaging>jar</packaging>
7     <name>meviz</name>
8     <description>media wizard</description>
9
10     <organization>
11         <name>svjatoslav.eu</name>
12         <url>http://svjatoslav.eu</url>
13     </organization>
14
15     <dependencies>
16         <dependency>
17             <groupId>eu.svjatoslav</groupId>
18             <artifactId>svjatoslavcommons</artifactId>
19             <version>1.7</version>
20         </dependency>
21
22         <dependency>
23             <groupId>log4j</groupId>
24             <artifactId>log4j</artifactId>
25             <version>1.2.16</version>
26         </dependency>
27
28     </dependencies>
29
30     <build>
31         <plugins>
32             <plugin>
33                 <artifactId>maven-assembly-plugin</artifactId>
34                 <configuration>
35                     <archive>
36                         <manifest>
37                             <mainClass>eu.svjatoslav.meviz.Main</mainClass>
38                         </manifest>
39                     </archive>
40                     <descriptorRefs>
41                         <descriptorRef>jar-with-dependencies</descriptorRef>
42                     </descriptorRefs>
43                 </configuration>
44
45                 <executions>
46
47                     <execution>
48                         <id>package-jar-with-dependencies</id>
49                         <phase>package</phase>
50                         <goals>
51                             <goal>single</goal>
52                         </goals>
53                         <configuration>
54                             <descriptorRefs>
55                                 <descriptorRef>jar-with-dependencies</descriptorRef>
56                             </descriptorRefs>
57                             <archive>
58                                 <manifest>
59                                     <mainClass>eu.svjatoslav.meviz.Main</mainClass>
60                                 </manifest>
61                             </archive>
62                         </configuration>
63                     </execution>
64
65                 </executions>
66             </plugin>
67
68             <plugin>
69                 <groupId>org.apache.maven.plugins</groupId>
70                 <artifactId>maven-compiler-plugin</artifactId>
71                 <version>2.3.2</version>
72                 <configuration>
73                     <source>1.8</source>
74                     <target>1.8</target>
75                     <encoding>UTF-8</encoding>
76                 </configuration>
77             </plugin>
78
79             <plugin>
80                 <groupId>org.apache.maven.plugins</groupId>
81                 <artifactId>maven-source-plugin</artifactId>
82                 <version>2.2.1</version>
83                 <executions>
84                     <execution>
85                         <id>attach-sources</id>
86                         <goals>
87                             <goal>jar</goal>
88                         </goals>
89                     </execution>
90                 </executions>
91             </plugin>
92
93             <plugin>
94                 <groupId>org.apache.maven.plugins</groupId>
95                 <artifactId>maven-javadoc-plugin</artifactId>
96                 <version>2.9</version>
97                 <executions>
98                     <execution>
99                         <id>attach-javadocs</id>
100                         <goals>
101                             <goal>jar</goal>
102                         </goals>
103                     </execution>
104                 </executions>
105             </plugin>
106
107             <plugin>
108                 <groupId>org.apache.maven.plugins</groupId>
109                 <artifactId>maven-release-plugin</artifactId>
110                 <version>2.5.2</version>
111                 <dependencies>
112                     <dependency>
113                         <groupId>org.apache.maven.scm</groupId>
114                         <artifactId>maven-scm-provider-gitexe</artifactId>
115                         <version>1.9.4</version>
116                     </dependency>
117                 </dependencies>
118             </plugin>
119
120         </plugins>
121
122         <extensions>
123             <extension>
124                 <groupId>org.apache.maven.wagon</groupId>
125                 <artifactId>wagon-ssh-external</artifactId>
126                 <version>2.6</version>
127             </extension>
128         </extensions>
129     </build>
130
131     <distributionManagement>
132         <snapshotRepository>
133             <id>svjatoslav.eu</id>
134             <name>svjatoslav.eu</name>
135             <url>scpexe://svjatoslav.eu:10006/srv/maven</url>
136         </snapshotRepository>
137         <repository>
138             <id>svjatoslav.eu</id>
139             <name>svjatoslav.eu</name>
140             <url>scpexe://svjatoslav.eu:10006/srv/maven</url>
141         </repository>
142     </distributionManagement>
143
144     <scm>
145         <connection>scm:git:ssh://gitprivate@svjatoslav.eu/home/gitprivate/repositories/meviz.git</connection>
146         <developerConnection>scm:git:ssh://gitprivate@svjatoslav.eu/home/gitprivate/repositories/meviz.git
147         </developerConnection>
148     </scm>
149
150     <repositories>
151         <repository>
152             <id>svjatoslav.eu</id>
153             <name>Svjatoslav repository</name>
154             <url>http://www2.svjatoslav.eu/maven/</url>
155
156             <releases>
157                 <enabled>true</enabled>
158             </releases>
159             <snapshots>
160                 <enabled>true</enabled>
161             </snapshots>
162         </repository>
163     </repositories>
164
165 </project>