Skip to content

Commit 0ce0472

Browse files
committed
拆分es和mongodb
1 parent 014b46f commit 0ce0472

File tree

6 files changed

+27
-104
lines changed

6 files changed

+27
-104
lines changed

moql-querier-es/pom.xml

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,14 @@
88
<version>1.1.0</version>
99
</parent>
1010

11-
<groupId>org.datayoo.footstone</groupId>
11+
<version>1.0.0</version>
12+
<groupId>org.datayoo.moql</groupId>
1213
<artifactId>moql-querier-es</artifactId>
1314
<packaging>jar</packaging>
1415

1516
<name>moql-querier-es</name>
16-
<url>http://maven.apache.org</url>
1717

1818
<properties>
19-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2019
</properties>
2120

2221
<dependencies>
@@ -29,15 +28,8 @@
2928
<dependency>
3029
<groupId>org.datayoo.moql</groupId>
3130
<artifactId>moql-querier</artifactId>
32-
<version>1.2.1</version>
31+
<version>RELEASE</version>
3332
<scope>compile</scope>
3433
</dependency>
35-
36-
<dependency>
37-
<groupId>junit</groupId>
38-
<artifactId>junit</artifactId>
39-
<version>4.13.1</version>
40-
<scope>test</scope>
41-
</dependency>
4234
</dependencies>
4335
</project>

moql-querier-es/src/test/java/org/datayoo/footstone/AppTest.java

Lines changed: 0 additions & 38 deletions
This file was deleted.

moql-querier-mongodb/pom.xml

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,32 +8,23 @@
88
<version>1.1.0</version>
99
</parent>
1010

11-
<groupId>org.datayoo.footstone</groupId>
11+
<version>1.0.0</version>
12+
<groupId>org.datayoo.moql</groupId>
1213
<artifactId>moql-querier-mongodb</artifactId>
1314
<packaging>jar</packaging>
1415

1516
<name>moql-querier-mongodb</name>
16-
<url>http://maven.apache.org</url>
1717

1818
<properties>
19-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2019
</properties>
2120

2221
<dependencies>
23-
<dependency>
24-
<groupId>junit</groupId>
25-
<artifactId>junit</artifactId>
26-
<version>3.8.1</version>
27-
<scope>test</scope>
28-
</dependency>
29-
3022
<dependency>
3123
<groupId>org.datayoo.moql</groupId>
3224
<artifactId>moql-querier</artifactId>
33-
<version>1.2.1</version>
25+
<version>RELEASE</version>
3426
<scope>compile</scope>
3527
</dependency>
36-
3728
<dependency>
3829
<groupId>org.mongodb</groupId>
3930
<artifactId>mongodb-driver-sync</artifactId>

moql-querier-mongodb/src/test/java/org/datayoo/footstone/AppTest.java

Lines changed: 0 additions & 38 deletions
This file was deleted.

moql-querier/pom.xml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,11 @@
1111
<modelVersion>4.0.0</modelVersion>
1212

1313
<groupId>org.datayoo.moql</groupId>
14-
<version>1.2.1</version>
14+
<version>1.2.2</version>
1515
<packaging>jar</packaging>
1616
<artifactId>moql-querier</artifactId>
1717

1818
<name>moql-querier</name>
19-
<!-- FIXME change it to the project's website -->
20-
<url>http://www.example.com</url>
2119

2220
<dependencies>
2321
<dependency>
@@ -41,7 +39,6 @@
4139
<artifactId>moql-translator</artifactId>
4240
<version>RELEASE</version>
4341
</dependency>
44-
4542
</dependencies>
4643

4744
<build>

pom.xml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
<packaging>pom</packaging>
2222

2323
<name>moql-parent</name>
24-
<url>http://maven.apache.org</url>
2524

2625
<properties>
2726
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -48,6 +47,26 @@
4847
<target>1.8</target>
4948
</configuration>
5049
</plugin>
50+
<plugin>
51+
<groupId>org.apache.maven.plugins</groupId>
52+
<artifactId>maven-gpg-plugin</artifactId>
53+
<version>1.6</version>
54+
<executions>
55+
<execution>
56+
<id>sign-artifacts</id>
57+
<phase>verify</phase>
58+
<goals>
59+
<goal>sign</goal>
60+
</goals>
61+
<configuration>
62+
<gpgArguments>
63+
<arg>--pinentry-mode</arg>
64+
<arg>loopback</arg>
65+
</gpgArguments>
66+
</configuration>
67+
</execution>
68+
</executions>
69+
</plugin>
5170
</plugins>
5271
</build>
5372
<profiles>

0 commit comments

Comments
 (0)