|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" 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 |
| - <parent> |
7 |
| - <groupId>org.xujin.moss</groupId> |
8 |
| - <artifactId>moss</artifactId> |
9 |
| - <version>1.0.0.RELEASE</version> |
10 |
| - </parent> |
11 |
| - |
12 |
| - <groupId>org.xujin.moss</groupId> |
13 |
| - <artifactId>moss-web</artifactId> |
14 |
| - <version>1.0.0.RELEASE</version> |
15 |
| - <packaging>jar</packaging> |
16 |
| - |
17 |
| - <name>moss-web</name> |
18 |
| - <description>moss-web</description> |
19 |
| - <dependencies> |
20 |
| - |
21 |
| - <dependency> |
22 |
| - <groupId>org.xujin.moss</groupId> |
23 |
| - <artifactId>moss-client-2.x</artifactId> |
24 |
| - <version>1.0.0.RELEASE</version> |
25 |
| - </dependency> |
26 |
| - <!-- |
27 |
| - <dependency> |
28 |
| - <groupId>org.xujin.moss</groupId> |
29 |
| - <artifactId>moss-adapter-nacos</artifactId> |
30 |
| - <version>1.0.0.RELEASE</version> |
31 |
| - </dependency>--> |
32 |
| - <dependency> |
33 |
| - <groupId>com.github.ulisesbocchio</groupId> |
34 |
| - <artifactId>jasypt-spring-boot-starter</artifactId> |
35 |
| - </dependency> |
36 |
| - |
37 |
| - <dependency> |
38 |
| - <groupId>mysql</groupId> |
39 |
| - <artifactId>mysql-connector-java</artifactId> |
40 |
| - <scope>runtime</scope> |
41 |
| - <version>6.0.6</version> |
42 |
| - </dependency> |
43 |
| - |
44 |
| - |
45 |
| - <dependency> |
46 |
| - <groupId>org.xujin.moss</groupId> |
47 |
| - <artifactId>moss-extension</artifactId> |
48 |
| - </dependency> |
49 |
| - |
50 |
| - <dependency> |
51 |
| - <groupId>org.springframework.boot</groupId> |
52 |
| - <artifactId>spring-boot-starter-web</artifactId> |
53 |
| - |
54 |
| - </dependency> |
55 |
| - |
56 |
| - <dependency> |
57 |
| - <groupId>org.springframework.boot</groupId> |
58 |
| - <artifactId>spring-boot-starter</artifactId> |
59 |
| - </dependency> |
60 |
| - |
61 |
| - <dependency> |
62 |
| - <groupId>org.springframework.boot</groupId> |
63 |
| - <artifactId>spring-boot-starter-test</artifactId> |
64 |
| - <scope>test</scope> |
65 |
| - </dependency> |
66 |
| - |
67 |
| - <dependency> |
| 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 | + <parent> |
| 7 | + <groupId>org.xujin.moss</groupId> |
| 8 | + <artifactId>moss</artifactId> |
| 9 | + <version>1.0.0.RELEASE</version> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <groupId>org.xujin.moss</groupId> |
| 13 | + <artifactId>moss-web</artifactId> |
| 14 | + <version>1.0.0.RELEASE</version> |
| 15 | + <packaging>jar</packaging> |
| 16 | + |
| 17 | + <name>moss-web</name> |
| 18 | + <description>moss-web</description> |
| 19 | + <properties> |
| 20 | + <start-class>org.xujin.moss.MossApplication</start-class> |
| 21 | + </properties> |
| 22 | + <dependencies> |
| 23 | + |
| 24 | + <dependency> |
| 25 | + <groupId>org.xujin.moss</groupId> |
| 26 | + <artifactId>moss-client-2.x</artifactId> |
| 27 | + <version>1.0.0.RELEASE</version> |
| 28 | + </dependency> |
| 29 | + <dependency> |
| 30 | + <groupId>com.github.ulisesbocchio</groupId> |
| 31 | + <artifactId>jasypt-spring-boot-starter</artifactId> |
| 32 | + </dependency> |
| 33 | + |
| 34 | + <dependency> |
| 35 | + <groupId>mysql</groupId> |
| 36 | + <artifactId>mysql-connector-java</artifactId> |
| 37 | + <scope>runtime</scope> |
| 38 | + <version>6.0.6</version> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>com.h2database</groupId> |
| 42 | + <artifactId>h2</artifactId> |
| 43 | + <scope>runtime</scope> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <groupId>org.xujin.moss</groupId> |
| 48 | + <artifactId>moss-extension</artifactId> |
| 49 | + </dependency> |
| 50 | + |
| 51 | + <dependency> |
| 52 | + <groupId>org.springframework.boot</groupId> |
| 53 | + <artifactId>spring-boot-starter-web</artifactId> |
| 54 | + |
| 55 | + </dependency> |
| 56 | + |
| 57 | + <dependency> |
| 58 | + <groupId>org.springframework.boot</groupId> |
| 59 | + <artifactId>spring-boot-starter</artifactId> |
| 60 | + </dependency> |
| 61 | + |
| 62 | + <dependency> |
| 63 | + <groupId>org.springframework.boot</groupId> |
| 64 | + <artifactId>spring-boot-starter-test</artifactId> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
| 67 | + |
| 68 | + <dependency> |
68 | 69 | <groupId>io.springfox</groupId>
|
69 | 70 | <artifactId>springfox-swagger2</artifactId>
|
70 | 71 | <version>2.9.2</version>
|
|
78 | 79 |
|
79 | 80 |
|
80 | 81 |
|
81 |
| - </dependencies> |
82 |
| - |
83 |
| - <build> |
84 |
| - <finalName>moss-web</finalName> |
85 |
| - <plugins> |
86 |
| - <plugin> |
87 |
| - <groupId>org.springframework.boot</groupId> |
88 |
| - <artifactId>spring-boot-maven-plugin</artifactId> |
89 |
| - <configuration> |
90 |
| - <mainClass>org.xujin.moss.MossApplication</mainClass> |
91 |
| - <layout>JAR</layout> |
92 |
| - </configuration> |
93 |
| - <executions> |
94 |
| - <execution> |
95 |
| - <goals> |
96 |
| - <goal>repackage</goal> |
97 |
| - <goal>build-info</goal> |
98 |
| - </goals> |
99 |
| - <configuration> |
100 |
| - <additionalProperties> |
101 |
| - <encoding.source>UTF-8</encoding.source> |
102 |
| - <encoding.reporting>UTF-8</encoding.reporting> |
103 |
| - <java.source>${maven.compiler.source}</java.source> |
104 |
| - <java.target>${maven.compiler.target}</java.target> |
105 |
| - <springcloud.version>${spring-cloud.version}</springcloud.version> |
106 |
| - </additionalProperties> |
107 |
| - </configuration> |
108 |
| - </execution> |
109 |
| - </executions> |
110 |
| - </plugin> |
111 |
| - <plugin> |
112 |
| - <groupId>org.apache.maven.plugins</groupId> |
113 |
| - <artifactId>maven-resources-plugin</artifactId> |
114 |
| - <configuration> |
115 |
| - <delimiters>@</delimiters> |
116 |
| - <useDefaultDelimiters>false</useDefaultDelimiters> |
117 |
| - </configuration> |
118 |
| - </plugin> |
119 |
| - <plugin> |
120 |
| - <groupId>pl.project13.maven</groupId> |
121 |
| - <artifactId>git-commit-id-plugin</artifactId> |
122 |
| - <version>2.1.15</version> |
123 |
| - <executions> |
124 |
| - <execution> |
125 |
| - <goals> |
126 |
| - <goal>revision</goal> |
127 |
| - </goals> |
128 |
| - </execution> |
129 |
| - </executions> |
130 |
| - <configuration> |
131 |
| - <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> |
132 |
| - </configuration> |
133 |
| - </plugin> |
134 |
| - </plugins> |
135 |
| - <resources> |
136 |
| - <resource> |
137 |
| - <directory>src/main/resources</directory> |
138 |
| - <filtering>true</filtering> |
139 |
| - </resource> |
140 |
| - </resources> |
141 |
| - </build> |
| 82 | + </dependencies> |
| 83 | + |
| 84 | + <build> |
| 85 | + <finalName>moss-web</finalName> |
| 86 | + <plugins> |
| 87 | + <plugin> |
| 88 | + <groupId>org.springframework.boot</groupId> |
| 89 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 90 | + <configuration> |
| 91 | + <mainClass>${start-class}</mainClass> |
| 92 | + <layout>WAR</layout> |
| 93 | + </configuration> |
| 94 | + <executions> |
| 95 | + <execution> |
| 96 | + <goals> |
| 97 | + <goal>repackage</goal> |
| 98 | + <goal>build-info</goal> |
| 99 | + </goals> |
| 100 | + </execution> |
| 101 | + </executions> |
| 102 | + </plugin> |
| 103 | + <plugin> |
| 104 | + <groupId>pl.project13.maven</groupId> |
| 105 | + <artifactId>git-commit-id-plugin</artifactId> |
| 106 | + </plugin> |
| 107 | + </plugins> |
| 108 | + <resources> |
| 109 | + <resource> |
| 110 | + <directory>src/main/resources</directory> |
| 111 | + <filtering>true</filtering> |
| 112 | + </resource> |
| 113 | + </resources> |
| 114 | + </build> |
142 | 115 | </project>
|
0 commit comments