Skip to content

Commit

Permalink
build: change artifact ids
Browse files Browse the repository at this point in the history
  • Loading branch information
Siroshun09 committed Jul 3, 2021
1 parent 05e4e5c commit a9cc865
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ConfigAPI

![Maven Central](https://img.shields.io/maven-central/v/com.github.siroshun09.configapi/configapi)
![Maven Central](https://img.shields.io/nexus/s/com.github.siroshun09.configapi/configapi?label=snapshot&server=https%3A%2F%2Foss.sonatype.org)
![Maven Central](https://img.shields.io/maven-central/v/com.github.siroshun09.configapi/parent)
![Maven Central](https://img.shields.io/nexus/s/com.github.siroshun09.configapi/parent?label=snapshot&server=https%3A%2F%2Foss.sonatype.org)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/Siroshun09/ConfigAPI/Java%20CI)
![GitHub](https://img.shields.io/github/license/Siroshun09/ConfigAPI)

Expand All @@ -20,7 +20,7 @@ Javadoc is [here](https://siroshun09.github.io/ConfigAPI/)
```xml
<dependency>
<groupId>com.github.siroshun09.configapi</groupId>
<artifactId>api</artifactId>
<artifactId>configapi</artifactId>
<version>4.1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
Expand All @@ -31,7 +31,7 @@ Javadoc is [here](https://siroshun09.github.io/ConfigAPI/)
```xml
<dependency>
<groupId>com.github.siroshun09.configapi</groupId>
<artifactId>yaml</artifactId>
<artifactId>configapi-yaml</artifactId>
<version>4.1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
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">
<parent>
<artifactId>configapi</artifactId>
<groupId>com.github.siroshun09.configapi</groupId>
<artifactId>parent</artifactId>
<version>4.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>api</artifactId>
<artifactId>configapi</artifactId>

</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.github.siroshun09.configapi</groupId>
<artifactId>configapi</artifactId>
<artifactId>parent</artifactId>
<version>4.1.0-SNAPSHOT</version>
<packaging>pom</packaging>

Expand Down
6 changes: 3 additions & 3 deletions yaml/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@
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">
<parent>
<artifactId>configapi</artifactId>
<groupId>com.github.siroshun09.configapi</groupId>
<artifactId>parent</artifactId>
<version>4.1.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>yaml</artifactId>
<artifactId>configapi-yaml</artifactId>

<dependencies>
<dependency>
<groupId>com.github.siroshun09.configapi</groupId>
<artifactId>api</artifactId>
<artifactId>configapi</artifactId>
<version>4.1.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
Expand Down

0 comments on commit a9cc865

Please sign in to comment.