Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish to central repository #5

Merged
merged 4 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -174,4 +174,5 @@ buildNumber.properties
logs/
.git/

**/.flattened-pom.xml
~
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ For expedited testing.
mvn archetype:generate \
-DarchetypeGroupId=xyz.mytang0.brook.demo \
-DarchetypeArtifactId=brook-demo-spring-archetype \
-DarchetypeVersion=1.0.0-SNAPSHOT \
-DarchetypeVersion=1.0.0-alpha \
-DgroupId=<my.groupid> \
-DartifactId=<my-artifactId> \
-DinteractiveMode=false \
Expand Down
2 changes: 1 addition & 1 deletion brook-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-parent</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-common</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The common module of brook project.</description>

<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public ConfigOption<T> noDefaultValue() {
}

/**
* Builder for {@link ConfigOption} of list of type {@link E}.
* Builder for {@link ConfigOption} of list of type E.
*
* @param <E> list element type of the option
*/
Expand Down
2 changes: 1 addition & 1 deletion brook-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-parent</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-core</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The core module of brook project.</description>

<dependencies>
<dependency>
Expand Down
3 changes: 0 additions & 3 deletions brook-demo/brook-demo-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,13 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-demo</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

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

<properties>
<skip.maven.deploy>true</skip.maven.deploy>

<!-- plugins -->
<spring-boot-maven-plugin.version>2.0.3.RELEASE</spring-boot-maven-plugin.version>

Expand Down
2 changes: 1 addition & 1 deletion brook-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-parent</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-demo</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>

<properties>
<skip.maven.deploy>true</skip.maven.deploy>
<maven-archetype-plugin.version>3.2.0</maven-archetype-plugin.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion brook-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-parent</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-engine</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The engine module of brook project.</description>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion brook-spi-extensions/brook-computing-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spi-extensions</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-computing-extensions</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>The computing extensions module of brook project.</description>

<modules>
</modules>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-lock-extensions</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-lock-redis</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The redis lock module of brook project.</description>

<properties>
<redisson.version>3.18.0</redisson.version>
Expand Down
2 changes: 1 addition & 1 deletion brook-spi-extensions/brook-lock-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spi-extensions</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-lock-extensions</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>The lock extensions module of brook project.</description>

<modules>
<module>brook-lock-redis</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-metadata-extensions</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-metadata-http</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The http metadata module of brook project.</description>

<properties>
<httpasyncclient.version>4.1.3</httpasyncclient.version>
Expand Down
2 changes: 1 addition & 1 deletion brook-spi-extensions/brook-metadata-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spi-extensions</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-metadata-extensions</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>The metadata extensions module of brook project.</description>

<modules>
<module>brook-metadata-http</module>
Expand Down
16 changes: 0 additions & 16 deletions brook-spi-extensions/brook-oss-extensions/brook-oss-s3/pom.xml

This file was deleted.

3 changes: 1 addition & 2 deletions brook-spi-extensions/brook-oss-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spi-extensions</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-oss-extensions</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>The oss extensions module of brook project.</description>

<modules>
<module>brook-oss-s3</module>
</modules>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-task-extensions</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-task-http</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The http task module of brook project.</description>

<properties>
<httpasyncclient.version>4.1.3</httpasyncclient.version>
Expand Down
2 changes: 1 addition & 1 deletion brook-spi-extensions/brook-task-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spi-extensions</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-task-extensions</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>The task extensions module of brook project.</description>

<modules>
<module>brook-task-http</module>
Expand Down
2 changes: 1 addition & 1 deletion brook-spi-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-parent</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-spi-extensions</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>The spi extensions module of brook project.</description>

<modules>
<module>brook-task-extensions</module>
Expand Down
2 changes: 1 addition & 1 deletion brook-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-parent</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-spi</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The spi module of brook project.</description>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion brook-spring-boot/brook-spring-boot-autoconfigure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spring-boot</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-spring-boot-autoconfigure</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The spring boot autoconfigure module of brook project.</description>

<properties>
</properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
import java.util.Map;
import java.util.concurrent.TimeUnit;

/**
* @link <a href="https://docs.spring.io/spring-framework/docs/3.2.x/spring-framework-reference/html/expressions.html">...</a>
*/
@Slf4j
public class SpelEngine implements Engine {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spring-boot-locks</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-spring-boot-lock-redis</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The spring boot redis lock module of brook project.</description>

<properties>
<brook-common.version>${project.version}</brook-common.version>
Expand Down
2 changes: 1 addition & 1 deletion brook-spring-boot/brook-spring-boot-locks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spring-boot</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-spring-boot-locks</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>The spring boot locks module of brook project.</description>

<modules>
<module>brook-spring-boot-lock-redis</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spring-boot-metadata</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-spring-boot-http-metadata</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The spring boot http metadata module of brook project.</description>

<properties>
<brook-metadata-http.version>${project.version}</brook-metadata-http.version>
Expand Down
2 changes: 1 addition & 1 deletion brook-spring-boot/brook-spring-boot-metadata/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spring-boot</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-spring-boot-metadata</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>The spring boot metadata module of brook project.</description>

<modules>
<module>brook-spring-boot-http-metadata</module>
Expand Down
2 changes: 1 addition & 1 deletion brook-spring-boot/brook-spring-boot-mybatis/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spring-boot</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-spring-boot-mybatis</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The spring boot mybatis module of brook project.</description>

<properties>
<mybatis-plus-boot.version>3.4.2</mybatis-plus-boot.version>
Expand Down
2 changes: 1 addition & 1 deletion brook-spring-boot/brook-spring-boot-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-spring-boot</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-spring-boot-starter</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<description>The spring boot starter module of brook project.</description>

<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion brook-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
<groupId>xyz.mytang0.brook</groupId>
<artifactId>brook-parent</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>brook-spring-boot</artifactId>
<packaging>pom</packaging>
<name>${project.artifactId}</name>
<description>The spring boot module of brook project.</description>

<properties>
<spring-boot.version>2.0.3.RELEASE</spring-boot.version>
Expand Down
Loading
Loading