Skip to content

Commit 25e110a

Browse files
authored
Merge pull request #5 from mytang0/publish
Publish to central repository
2 parents e976879 + 4619750 commit 25e110a

29 files changed

Lines changed: 101 additions & 106 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -174,4 +174,5 @@ buildNumber.properties
174174
logs/
175175
.git/
176176

177+
**/.flattened-pom.xml
177178
~

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ For expedited testing.
4747
mvn archetype:generate \
4848
-DarchetypeGroupId=xyz.mytang0.brook.demo \
4949
-DarchetypeArtifactId=brook-demo-spring-archetype \
50-
-DarchetypeVersion=1.0.0-SNAPSHOT \
50+
-DarchetypeVersion=1.0.0-alpha \
5151
-DgroupId=<my.groupid> \
5252
-DartifactId=<my-artifactId> \
5353
-DinteractiveMode=false \

brook-common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<groupId>xyz.mytang0.brook</groupId>
88
<artifactId>brook-parent</artifactId>
99
<version>${revision}</version>
10-
<relativePath>../pom.xml</relativePath>
1110
</parent>
1211

1312
<artifactId>brook-common</artifactId>
1413
<packaging>jar</packaging>
1514
<name>${project.artifactId}</name>
15+
<description>The common module of brook project.</description>
1616

1717
<dependencies>
1818
<dependency>

brook-common/src/main/java/xyz/mytang0/brook/common/configuration/ConfigOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public ConfigOption<T> noDefaultValue() {
253253
}
254254

255255
/**
256-
* Builder for {@link ConfigOption} of list of type {@link E}.
256+
* Builder for {@link ConfigOption} of list of type E.
257257
*
258258
* @param <E> list element type of the option
259259
*/

brook-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<groupId>xyz.mytang0.brook</groupId>
88
<artifactId>brook-parent</artifactId>
99
<version>${revision}</version>
10-
<relativePath>../pom.xml</relativePath>
1110
</parent>
1211

1312
<artifactId>brook-core</artifactId>
1413
<packaging>jar</packaging>
1514
<name>${project.artifactId}</name>
15+
<description>The core module of brook project.</description>
1616

1717
<dependencies>
1818
<dependency>

brook-demo/brook-demo-spring/pom.xml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,13 @@
77
<groupId>xyz.mytang0.brook</groupId>
88
<artifactId>brook-demo</artifactId>
99
<version>${revision}</version>
10-
<relativePath>../pom.xml</relativePath>
1110
</parent>
1211

1312
<groupId>xyz.mytang0.brook.demo</groupId>
1413
<artifactId>brook-demo-spring</artifactId>
1514
<version>${revision}</version>
1615

1716
<properties>
18-
<skip.maven.deploy>true</skip.maven.deploy>
19-
2017
<!-- plugins -->
2118
<spring-boot-maven-plugin.version>2.0.3.RELEASE</spring-boot-maven-plugin.version>
2219

brook-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<groupId>xyz.mytang0.brook</groupId>
88
<artifactId>brook-parent</artifactId>
99
<version>${revision}</version>
10-
<relativePath>../pom.xml</relativePath>
1110
</parent>
1211

1312
<artifactId>brook-demo</artifactId>
1413
<packaging>pom</packaging>
1514
<name>${project.artifactId}</name>
1615

1716
<properties>
17+
<skip.maven.deploy>true</skip.maven.deploy>
1818
<maven-archetype-plugin.version>3.2.0</maven-archetype-plugin.version>
1919
</properties>
2020

brook-engine/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<groupId>xyz.mytang0.brook</groupId>
88
<artifactId>brook-parent</artifactId>
99
<version>${revision}</version>
10-
<relativePath>../pom.xml</relativePath>
1110
</parent>
1211

1312
<artifactId>brook-engine</artifactId>
1413
<packaging>jar</packaging>
1514
<name>${project.artifactId}</name>
15+
<description>The engine module of brook project.</description>
1616

1717
<dependencies>
1818
<dependency>

brook-spi-extensions/brook-computing-extensions/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<groupId>xyz.mytang0.brook</groupId>
88
<artifactId>brook-spi-extensions</artifactId>
99
<version>${revision}</version>
10-
<relativePath>../pom.xml</relativePath>
1110
</parent>
1211

1312
<artifactId>brook-computing-extensions</artifactId>
1413
<packaging>pom</packaging>
1514
<name>${project.artifactId}</name>
15+
<description>The computing extensions module of brook project.</description>
1616

1717
<modules>
1818
</modules>

brook-spi-extensions/brook-lock-extensions/brook-lock-redis/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
<groupId>xyz.mytang0.brook</groupId>
88
<artifactId>brook-lock-extensions</artifactId>
99
<version>${revision}</version>
10-
<relativePath>../pom.xml</relativePath>
1110
</parent>
1211

1312
<artifactId>brook-lock-redis</artifactId>
1413
<packaging>jar</packaging>
1514
<name>${project.artifactId}</name>
15+
<description>The redis lock module of brook project.</description>
1616

1717
<properties>
1818
<redisson.version>3.18.0</redisson.version>

0 commit comments

Comments
 (0)