|
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/xsd/maven-4.0.0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - |
5 | | - <groupId>dev.botcity</groupId> |
6 | | - <artifactId>botcity-framework-core</artifactId> |
7 | | - <version>1.1.0</version> |
8 | | - <packaging>jar</packaging> |
9 | | - |
10 | | - <name>framework</name> |
11 | | - <url>http://maven.apache.org</url> |
12 | | - |
13 | | - <properties> |
14 | | - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | | - </properties> |
16 | | - |
17 | | -<build> |
18 | | - <sourceDirectory>src/main/java</sourceDirectory> |
19 | | - <plugins> |
20 | | - <plugin> |
21 | | - <artifactId>maven-compiler-plugin</artifactId> |
22 | | - <version>3.6.1</version> |
23 | | - <configuration> |
24 | | - <source>1.8</source> |
25 | | - <target>1.8</target> |
26 | | - </configuration> |
27 | | - </plugin> |
28 | | - </plugins> |
29 | | - </build> |
30 | | - <dependencies> |
31 | | - <dependency> |
32 | | - <groupId>org.marvinproject</groupId> |
33 | | - <artifactId>MarvinFramework</artifactId> |
34 | | - <version>2.0</version> |
35 | | - </dependency> |
36 | | - |
37 | | - <dependency> |
38 | | - <groupId>org.marvinproject</groupId> |
39 | | - <artifactId>MarvinPlugins</artifactId> |
40 | | - <version>2.0</version> |
41 | | - </dependency> |
42 | | - |
43 | | - <dependency> |
44 | | - <groupId>commons-io</groupId> |
45 | | - <artifactId>commons-io</artifactId> |
46 | | - <version>2.6</version> |
47 | | - </dependency> |
48 | | - |
49 | | - <dependency> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>dev.botcity</groupId> |
| 7 | + <artifactId>botcity-framework-core</artifactId> |
| 8 | + <version>1.1.0</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>framework</name> |
| 12 | + <url>http://maven.apache.org</url> |
| 13 | + |
| 14 | + <properties> |
| 15 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 16 | + </properties> |
| 17 | + |
| 18 | + <build> |
| 19 | + <sourceDirectory>src/main/java</sourceDirectory> |
| 20 | + <plugins> |
| 21 | + <plugin> |
| 22 | + <artifactId>maven-compiler-plugin</artifactId> |
| 23 | + <version>3.6.1</version> |
| 24 | + <configuration> |
| 25 | + <source>1.8</source> |
| 26 | + <target>1.8</target> |
| 27 | + </configuration> |
| 28 | + </plugin> |
| 29 | + <plugin> |
| 30 | + <artifactId>maven-assembly-plugin</artifactId> |
| 31 | + <executions> |
| 32 | + <execution> |
| 33 | + <phase>package</phase> |
| 34 | + <goals> |
| 35 | + <goal>single</goal> |
| 36 | + </goals> |
| 37 | + </execution> |
| 38 | + </executions> |
| 39 | + <configuration> |
| 40 | + <descriptorRefs> |
| 41 | + <descriptorRef>jar-with-dependencies</descriptorRef> |
| 42 | + </descriptorRefs> |
| 43 | + </configuration> |
| 44 | + </plugin> |
| 45 | + </plugins> |
| 46 | + </build> |
| 47 | + |
| 48 | + <dependencies> |
| 49 | + <dependency> |
| 50 | + <groupId>org.marvinproject</groupId> |
| 51 | + <artifactId>MarvinFramework</artifactId> |
| 52 | + <version>2.0</version> |
| 53 | + </dependency> |
| 54 | + |
| 55 | + <dependency> |
| 56 | + <groupId>org.marvinproject</groupId> |
| 57 | + <artifactId>MarvinPlugins</artifactId> |
| 58 | + <version>2.0</version> |
| 59 | + </dependency> |
| 60 | + |
| 61 | + <dependency> |
| 62 | + <groupId>commons-io</groupId> |
| 63 | + <artifactId>commons-io</artifactId> |
| 64 | + <version>2.6</version> |
| 65 | + </dependency> |
| 66 | + |
| 67 | + <dependency> |
50 | 68 | <groupId>com.github.kklisura.cdt</groupId> |
51 | 69 | <artifactId>cdt-java-client</artifactId> |
52 | 70 | <version>3.0.0</version> |
|
57 | 75 | <artifactId>commons-validator</artifactId> |
58 | 76 | <version>1.3.1</version> |
59 | 77 | </dependency> |
60 | | - |
61 | | - </dependencies> |
| 78 | + |
| 79 | + </dependencies> |
62 | 80 | </project> |
0 commit comments