Pain.
[tor-test-java.git] / pom.xml
blob77b384acd3412906d8bf8c4b0c845a81bf224609
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2                  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>com.post.random_email</groupId>
5         <artifactId>calendar</artifactId>
6         <packaging>jar</packaging>
7         <version>1.0-SNAPSHOT</version>
8         <name>tor-test</name>
9         <url>http://maven.apache.org</url>
10         <properties>
11                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12                 <skipTests>false</skipTests>
13         </properties>
14         <dependencies>
15                 <dependency>
16                         <groupId>junit</groupId>
17                         <artifactId>junit</artifactId>
18                         <version>3.8.1</version>
19                         <scope>test</scope>
20                 </dependency>
21                 <dependency>
22                         <groupId>biz.igg.oopdp</groupId>
23                         <artifactId>ff-tools</artifactId>
24                         <version>1.0-SNAPSHOT</version>
25                         <type>jar</type>
26                 </dependency>
27                 <dependency>
28                         <groupId>org.javalite</groupId>
29                         <artifactId>activejdbc</artifactId>
30                         <version>1.4.12</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>mysql</groupId>
34                         <artifactId>mysql-connector-java</artifactId>
35                         <version>5.1.34</version>
36                 </dependency>
37                 <dependency>
38                         <groupId>com.sparkjava</groupId>
39                         <artifactId>spark-core</artifactId>
40                         <version>2.5.3</version>
41                 </dependency>
42         </dependencies>
43         <build>
44                 <plugins>
45                         <plugin>
46                                 <groupId>org.apache.maven.plugins</groupId>
47                                 <artifactId>maven-compiler-plugin</artifactId>
48                                 <version>3.6.0</version>
49                                 <configuration>
50                                         <source>1.8</source>
51                                         <target>1.8</target>
52                                 </configuration>
53                         </plugin>
54                         <plugin>
55                                 <artifactId>maven-assembly-plugin</artifactId>
56                                 <executions>
57                                         <execution>
58                                                 <phase>package</phase>
59                                                 <goals>
60                                                         <goal>single</goal>
61                                                 </goals>
62                                         </execution>
63                                 </executions>
64                                 <configuration>
65                                         <descriptorRefs>
66                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
67                                         </descriptorRefs>
68                                         <archive>
69                                                 <manifest>
70                                                         <mainClass>com.post.random_email.calendar.App</mainClass>
71                                                 </manifest>
72                                         </archive>
73                                 </configuration>
74                         </plugin>
75                         <plugin>
76                                 <groupId>org.javalite</groupId>
77                                 <artifactId>activejdbc-instrumentation</artifactId>
78                                 <version>1.4.12</version>
79                                 <executions>
80                                         <execution>
81                                                 <phase>process-classes</phase>
82                                                 <goals>
83                                                         <goal>instrument</goal>
84                                                 </goals>
85                                         </execution>
86                                 </executions>
87                         </plugin>
88                 </plugins>
89         </build>
90 </project>