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