|
1 |
| -<?xml version="1.0" encoding="UTF-8"?> |
2 |
| -<!-- |
3 |
| - ~ Licensed to the Apache Software Foundation (ASF) under one or more |
4 |
| - ~ contributor license agreements. See the NOTICE file distributed with |
5 |
| - ~ this work for additional information regarding copyright ownership. |
6 |
| - ~ The ASF licenses this file to You under the Apache License, Version 2.0 |
7 |
| - ~ (the "License"); you may not use this file except in compliance with |
8 |
| - ~ the License. You may obtain a copy of the License at |
9 |
| - ~ |
10 |
| - ~ http://www.apache.org/licenses/LICENSE-2.0 |
11 |
| - ~ |
12 |
| - ~ Unless required by applicable law or agreed to in writing, software |
13 |
| - ~ distributed under the License is distributed on an "AS IS" BASIS, |
14 |
| - ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
15 |
| - ~ See the License for the specific language governing permissions and |
16 |
| - ~ limitations under the License. |
17 |
| - --> |
18 |
| - |
19 |
| -<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"> |
20 |
| - <modelVersion>4.0.0</modelVersion> |
21 |
| - <parent> |
22 |
| - <groupId>org.apache</groupId> |
23 |
| - <artifactId>apache</artifactId> |
24 |
| - <version>21</version> |
25 |
| - </parent> |
26 |
| - <groupId>org.apache.shardingsphere</groupId> |
27 |
| - <artifactId>shardingsphere-ui</artifactId> |
28 |
| - <version>5.0.0-RC1-SNAPSHOT</version> |
29 |
| - <packaging>pom</packaging> |
30 |
| - <name>${project.artifactId}</name> |
31 |
| - |
32 |
| - <modules> |
33 |
| - <module>shardingsphere-ui-frontend</module> |
34 |
| - <module>shardingsphere-ui-backend</module> |
35 |
| - <module>shardingsphere-ui-distribution</module> |
36 |
| - </modules> |
37 |
| - |
38 |
| - <properties> |
39 |
| - <java.version>1.8</java.version> |
40 |
| - <spring-boot.version>1.5.21.RELEASE</spring-boot.version> |
41 |
| - |
42 |
| - <apache-rat-plugin.version>0.12</apache-rat-plugin.version> |
43 |
| - <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version> |
44 |
| - <frontend-maven-plugin.version>1.6</frontend-maven-plugin.version> |
45 |
| - <os-maven-plugin.version>1.5.0.Final</os-maven-plugin.version> |
46 |
| - <takari-maven-plugin.version>0.6.1</takari-maven-plugin.version> |
47 |
| - |
48 |
| - <maven.deploy.skip>true</maven.deploy.skip> |
49 |
| - </properties> |
50 |
| - |
51 |
| - <dependencyManagement> |
52 |
| - <dependencies> |
53 |
| - <dependency> |
54 |
| - <groupId>org.springframework.boot</groupId> |
55 |
| - <artifactId>spring-boot-dependencies</artifactId> |
56 |
| - <version>${spring-boot.version}</version> |
57 |
| - <type>pom</type> |
58 |
| - <scope>import</scope> |
59 |
| - </dependency> |
60 |
| - </dependencies> |
61 |
| - </dependencyManagement> |
62 |
| - |
63 |
| - <build> |
64 |
| - <finalName>apache-shardingsphere-${project.version}</finalName> |
65 |
| - <extensions> |
66 |
| - <extension> |
67 |
| - <groupId>kr.motd.maven</groupId> |
68 |
| - <artifactId>os-maven-plugin</artifactId> |
69 |
| - <version>${os-maven-plugin.version}</version> |
70 |
| - </extension> |
71 |
| - </extensions> |
72 |
| - |
73 |
| - <pluginManagement> |
74 |
| - <plugins> |
75 |
| - <plugin> |
76 |
| - <groupId>org.apache.maven.plugins</groupId> |
77 |
| - <artifactId>maven-compiler-plugin</artifactId> |
78 |
| - <configuration> |
79 |
| - <source>${java.version}</source> |
80 |
| - <target>${java.version}</target> |
81 |
| - <testSource>${java.version}</testSource> |
82 |
| - <testTarget>${java.version}</testTarget> |
83 |
| - </configuration> |
84 |
| - <version>${maven-compiler-plugin.version}</version> |
85 |
| - </plugin> |
86 |
| - <!-- mvn -N io.takari:maven:wrapper -Dmaven=3.5.4 --> |
87 |
| - <plugin> |
88 |
| - <groupId>io.takari</groupId> |
89 |
| - <artifactId>maven</artifactId> |
90 |
| - <version>${takari-maven-plugin.version}</version> |
91 |
| - </plugin> |
92 |
| - </plugins> |
93 |
| - </pluginManagement> |
94 |
| - |
95 |
| - <plugins> |
96 |
| - <plugin> |
97 |
| - <groupId>org.apache.rat</groupId> |
98 |
| - <artifactId>apache-rat-plugin</artifactId> |
99 |
| - <version>${apache-rat-plugin.version}</version> |
100 |
| - <configuration> |
101 |
| - <excludes> |
102 |
| - <exclude>**/target/**</exclude> |
103 |
| - <exclude>**/logs/**</exclude> |
104 |
| - <exclude>**/*.log</exclude> |
105 |
| - <!-- IDE files --> |
106 |
| - <exclude>**/*.iml</exclude> |
107 |
| - <exclude>**/.idea/**</exclude> |
108 |
| - <exclude>**/*.classpath</exclude> |
109 |
| - <exclude>**/.project</exclude> |
110 |
| - <exclude>**/.settings/**</exclude> |
111 |
| - <exclude>**/dependency-reduced-pom.xml</exclude> |
112 |
| - <!-- git files --> |
113 |
| - <exclude>**/.gitignore</exclude> |
114 |
| - <exclude>**/.gitmodules</exclude> |
115 |
| - <exclude>**/.git/**</exclude> |
116 |
| - <!-- CI files --> |
117 |
| - <exclude>**/.travis.yml</exclude> |
118 |
| - <exclude>**/.mvn/jvm.config</exclude> |
119 |
| - <exclude>**/.mvn/wrapper/maven-wrapper.properties</exclude> |
120 |
| - <!-- GitHub files --> |
121 |
| - <exclude>**/.github/**</exclude> |
122 |
| - <!-- document files --> |
123 |
| - <exclude>**/*.md</exclude> |
124 |
| - <excldue>**/*.MD</excldue> |
125 |
| - <exclude>**/*.txt</exclude> |
126 |
| - <exclude>**/docs/**</exclude> |
127 |
| - <!-- UI files --> |
128 |
| - <exclude>**/.babelrc</exclude> |
129 |
| - <exclude>**/.editorconfig</exclude> |
130 |
| - <exclude>**/.eslintignore</exclude> |
131 |
| - <exclude>**/package.json</exclude> |
132 |
| - <exclude>**/assets/**</exclude> |
133 |
| - <exclude>**/dist/**</exclude> |
134 |
| - <exclude>**/etc/**</exclude> |
135 |
| - <exclude>**/node/**</exclude> |
136 |
| - <exclude>**/node_modules/**</exclude> |
137 |
| - <exclude>**/test/coverage/**</exclude> |
138 |
| - <exclude>**/package-lock.json</exclude> |
139 |
| - </excludes> |
140 |
| - </configuration> |
141 |
| - <executions> |
142 |
| - <execution> |
143 |
| - <phase>verify</phase> |
144 |
| - <goals> |
145 |
| - <goal>check</goal> |
146 |
| - </goals> |
147 |
| - </execution> |
148 |
| - </executions> |
149 |
| - </plugin> |
150 |
| - </plugins> |
151 |
| - </build> |
152 |
| - |
153 |
| - <scm> |
154 |
| - <connection>scm:git:https://github.com/apache/shardingsphere.git</connection> |
155 |
| - <developerConnection>scm:git:https://github.com/apache/shardingsphere.git</developerConnection> |
156 |
| - <url>https://github.com/apache/shardingsphere.git</url> |
157 |
| - <tag>HEAD</tag> |
158 |
| - </scm> |
159 |
| -</project> |
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Licensed to the Apache Software Foundation (ASF) under one or more |
| 4 | + ~ contributor license agreements. See the NOTICE file distributed with |
| 5 | + ~ this work for additional information regarding copyright ownership. |
| 6 | + ~ The ASF licenses this file to You under the Apache License, Version 2.0 |
| 7 | + ~ (the "License"); you may not use this file except in compliance with |
| 8 | + ~ the License. You may obtain a copy of the License at |
| 9 | + ~ |
| 10 | + ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | + ~ |
| 12 | + ~ Unless required by applicable law or agreed to in writing, software |
| 13 | + ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + ~ See the License for the specific language governing permissions and |
| 16 | + ~ limitations under the License. |
| 17 | + --> |
| 18 | + |
| 19 | +<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"> |
| 20 | + <modelVersion>4.0.0</modelVersion> |
| 21 | + <parent> |
| 22 | + <groupId>org.apache</groupId> |
| 23 | + <artifactId>apache</artifactId> |
| 24 | + <version>21</version> |
| 25 | + </parent> |
| 26 | + <groupId>org.apache.shardingsphere</groupId> |
| 27 | + <artifactId>shardingsphere-ui</artifactId> |
| 28 | + <version>4.1.1</version> |
| 29 | + <packaging>pom</packaging> |
| 30 | + <name>${project.artifactId}</name> |
| 31 | + |
| 32 | + <modules> |
| 33 | + <module>shardingsphere-ui-frontend</module> |
| 34 | + <module>shardingsphere-ui-backend</module> |
| 35 | + <module>shardingsphere-ui-distribution</module> |
| 36 | + </modules> |
| 37 | + |
| 38 | + <properties> |
| 39 | + <java.version>1.8</java.version> |
| 40 | + <spring-boot.version>1.5.21.RELEASE</spring-boot.version> |
| 41 | + |
| 42 | + <apache-rat-plugin.version>0.12</apache-rat-plugin.version> |
| 43 | + <maven-compiler-plugin.version>3.3</maven-compiler-plugin.version> |
| 44 | + <frontend-maven-plugin.version>1.6</frontend-maven-plugin.version> |
| 45 | + <os-maven-plugin.version>1.5.0.Final</os-maven-plugin.version> |
| 46 | + <takari-maven-plugin.version>0.6.1</takari-maven-plugin.version> |
| 47 | + |
| 48 | + <maven.deploy.skip>true</maven.deploy.skip> |
| 49 | + </properties> |
| 50 | + |
| 51 | + <dependencyManagement> |
| 52 | + <dependencies> |
| 53 | + <dependency> |
| 54 | + <groupId>org.springframework.boot</groupId> |
| 55 | + <artifactId>spring-boot-dependencies</artifactId> |
| 56 | + <version>${spring-boot.version}</version> |
| 57 | + <type>pom</type> |
| 58 | + <scope>import</scope> |
| 59 | + </dependency> |
| 60 | + </dependencies> |
| 61 | + </dependencyManagement> |
| 62 | + |
| 63 | + <build> |
| 64 | + <finalName>apache-shardingsphere-${project.version}</finalName> |
| 65 | + <extensions> |
| 66 | + <extension> |
| 67 | + <groupId>kr.motd.maven</groupId> |
| 68 | + <artifactId>os-maven-plugin</artifactId> |
| 69 | + <version>${os-maven-plugin.version}</version> |
| 70 | + </extension> |
| 71 | + </extensions> |
| 72 | + |
| 73 | + <pluginManagement> |
| 74 | + <plugins> |
| 75 | + <plugin> |
| 76 | + <groupId>org.apache.maven.plugins</groupId> |
| 77 | + <artifactId>maven-compiler-plugin</artifactId> |
| 78 | + <configuration> |
| 79 | + <source>${java.version}</source> |
| 80 | + <target>${java.version}</target> |
| 81 | + <testSource>${java.version}</testSource> |
| 82 | + <testTarget>${java.version}</testTarget> |
| 83 | + </configuration> |
| 84 | + <version>${maven-compiler-plugin.version}</version> |
| 85 | + </plugin> |
| 86 | + <!-- mvn -N io.takari:maven:wrapper -Dmaven=3.5.4 --> |
| 87 | + <plugin> |
| 88 | + <groupId>io.takari</groupId> |
| 89 | + <artifactId>maven</artifactId> |
| 90 | + <version>${takari-maven-plugin.version}</version> |
| 91 | + </plugin> |
| 92 | + </plugins> |
| 93 | + </pluginManagement> |
| 94 | + |
| 95 | + <plugins> |
| 96 | + <plugin> |
| 97 | + <groupId>org.apache.rat</groupId> |
| 98 | + <artifactId>apache-rat-plugin</artifactId> |
| 99 | + <version>${apache-rat-plugin.version}</version> |
| 100 | + <configuration> |
| 101 | + <excludes> |
| 102 | + <exclude>**/target/**</exclude> |
| 103 | + <exclude>**/logs/**</exclude> |
| 104 | + <exclude>**/*.log</exclude> |
| 105 | + <!-- IDE files --> |
| 106 | + <exclude>**/*.iml</exclude> |
| 107 | + <exclude>**/.idea/**</exclude> |
| 108 | + <exclude>**/*.classpath</exclude> |
| 109 | + <exclude>**/.project</exclude> |
| 110 | + <exclude>**/.settings/**</exclude> |
| 111 | + <exclude>**/dependency-reduced-pom.xml</exclude> |
| 112 | + <!-- git files --> |
| 113 | + <exclude>**/.gitignore</exclude> |
| 114 | + <exclude>**/.gitmodules</exclude> |
| 115 | + <exclude>**/.git/**</exclude> |
| 116 | + <!-- CI files --> |
| 117 | + <exclude>**/.travis.yml</exclude> |
| 118 | + <exclude>**/.mvn/jvm.config</exclude> |
| 119 | + <exclude>**/.mvn/wrapper/maven-wrapper.properties</exclude> |
| 120 | + <!-- GitHub files --> |
| 121 | + <exclude>**/.github/**</exclude> |
| 122 | + <!-- document files --> |
| 123 | + <exclude>**/*.md</exclude> |
| 124 | + <excldue>**/*.MD</excldue> |
| 125 | + <exclude>**/*.txt</exclude> |
| 126 | + <exclude>**/docs/**</exclude> |
| 127 | + <!-- UI files --> |
| 128 | + <exclude>**/.babelrc</exclude> |
| 129 | + <exclude>**/.editorconfig</exclude> |
| 130 | + <exclude>**/.eslintignore</exclude> |
| 131 | + <exclude>**/package.json</exclude> |
| 132 | + <exclude>**/assets/**</exclude> |
| 133 | + <exclude>**/dist/**</exclude> |
| 134 | + <exclude>**/etc/**</exclude> |
| 135 | + <exclude>**/node/**</exclude> |
| 136 | + <exclude>**/node_modules/**</exclude> |
| 137 | + <exclude>**/test/coverage/**</exclude> |
| 138 | + <exclude>**/package-lock.json</exclude> |
| 139 | + </excludes> |
| 140 | + </configuration> |
| 141 | + <executions> |
| 142 | + <execution> |
| 143 | + <phase>verify</phase> |
| 144 | + <goals> |
| 145 | + <goal>check</goal> |
| 146 | + </goals> |
| 147 | + </execution> |
| 148 | + </executions> |
| 149 | + </plugin> |
| 150 | + </plugins> |
| 151 | + </build> |
| 152 | + |
| 153 | + <scm> |
| 154 | + <connection>scm:git:https://github.com/apache/shardingsphere.git</connection> |
| 155 | + <developerConnection>scm:git:https://github.com/apache/shardingsphere.git</developerConnection> |
| 156 | + <url>https://github.com/apache/shardingsphere.git</url> |
| 157 | + <tag>shardingsphere-ui-4.1.1</tag> |
| 158 | + </scm> |
| 159 | +</project> |
0 commit comments