Skip to content

Commit

Permalink
Update groupId and versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Koziuk committed May 16, 2022
1 parent b0c2577 commit 4b83f97
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 24 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk</groupId>
<artifactId>typescript-generator</artifactId>
<packaging>pom</packaging>
<version>2.36-SNAPSHOT</version>
<version>2.37-SNAPSHOT</version>
<name>typescript-generator</name>
<description>Generates TypeScript declaration file from specified java classes.</description>
<url>https://github.com/vojtechhabarta/typescript-generator</url>
Expand Down
6 changes: 3 additions & 3 deletions sample-maven-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>sample-maven-spring</artifactId>
<version>2.0-SNAPSHOT</version>
<packaging>jar</packaging>
Expand Down Expand Up @@ -35,7 +35,7 @@
</configuration>
</plugin>
<plugin>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-maven-plugin</artifactId>
<version>${typescript-generator.version}</version>
<executions>
Expand All @@ -62,7 +62,7 @@
</configuration>
<dependencies>
<dependency>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-spring</artifactId>
<version>${typescript-generator.version}</version>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions sample-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>sample-maven</artifactId>
<version>2.0-SNAPSHOT</version>
<packaging>jar</packaging>
Expand Down Expand Up @@ -31,7 +31,7 @@
</configuration>
</plugin>
<plugin>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-maven-plugin</artifactId>
<version>FILL_VERSION</version>
<executions>
Expand Down
5 changes: 3 additions & 2 deletions typescript-generator-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk</groupId>
<artifactId>typescript-generator</artifactId>
<version>2.36-SNAPSHOT</version>
<version>2.37-SNAPSHOT</version>
</parent>

<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-core</artifactId>
<packaging>jar</packaging>
<name>typescript-generator-core</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ public NpmPackageJsonEmitter getNpmPackageJsonEmitter() {
private static String getVersion() {
try {
final InputStream inputStream = TypeScriptGenerator.class.getResourceAsStream(
"/META-INF/maven/cz.habarta.typescript-generator/typescript-generator-core/pom.properties");
"/META-INF/maven/com.github.MarcinKoziuk.typescript-generator/typescript-generator-core/pom.properties");
if (inputStream != null) {
final Properties properties = new Properties();
properties.load(inputStream);
Expand Down
9 changes: 5 additions & 4 deletions typescript-generator-gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk</groupId>
<artifactId>typescript-generator</artifactId>
<version>2.36-SNAPSHOT</version>
<version>2.37-SNAPSHOT</version>
</parent>

<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-gradle-plugin</artifactId>
<packaging>jar</packaging>
<name>typescript-generator-gradle-plugin</name>
Expand Down Expand Up @@ -47,9 +48,9 @@
<version>2.4.21</version>
</dependency>
<dependency>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-core</artifactId>
<version>2.36-SNAPSHOT</version>
<version>2.37-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
9 changes: 5 additions & 4 deletions typescript-generator-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk</groupId>
<artifactId>typescript-generator</artifactId>
<version>2.36-SNAPSHOT</version>
<version>2.37-SNAPSHOT</version>
</parent>

<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<name>typescript-generator-maven-plugin</name>
Expand All @@ -26,9 +27,9 @@
<scope>provided</scope>
</dependency>
<dependency>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-core</artifactId>
<version>2.36-SNAPSHOT</version>
<version>2.37-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
13 changes: 7 additions & 6 deletions typescript-generator-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk</groupId>
<artifactId>typescript-generator</artifactId>
<version>2.36-SNAPSHOT</version>
<version>2.37-SNAPSHOT</version>
</parent>

<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-spring</artifactId>
<packaging>jar</packaging>
<name>typescript-generator-spring</name>
Expand All @@ -18,9 +19,9 @@
<dependencies>
<!--compile dependencies-->
<dependency>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-core</artifactId>
<version>2.36-SNAPSHOT</version>
<version>2.37-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -45,9 +46,9 @@

<!--test dependencies-->
<dependency>
<groupId>cz.habarta.typescript-generator</groupId>
<groupId>com.github.MarcinKoziuk.typescript-generator</groupId>
<artifactId>typescript-generator-core</artifactId>
<version>2.36-SNAPSHOT</version>
<version>2.37-SNAPSHOT</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand Down

0 comments on commit 4b83f97

Please sign in to comment.