Skip to content

Commit

Permalink
[maven-release-plugin] prepare release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pwinckles committed Jun 28, 2023
1 parent 9475d7f commit 9d54bf5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 25 deletions.
8 changes: 3 additions & 5 deletions api/pom.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.pwinckles.jdbcgen</groupId>
<artifactId>jdbc-gen-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>jdbc-gen-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>

<name>jdbc-gen-api</name>
<description>API for jdbc-gen</description>
Expand Down
15 changes: 7 additions & 8 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.pwinckles.jdbcgen</groupId>
<artifactId>jdbc-gen-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<name>jdbc-gen-parent</name>
Expand All @@ -31,7 +29,8 @@
<connection>scm:git:https://github.com/pwinckles/jdbc-gen.git</connection>
<developerConnection>scm:git:[email protected]:pwinckles/jdbc-gen.git</developerConnection>
<url>https://github.com/pwinckles/jdbc-gen</url>
</scm>
<tag>v1.0.0</tag>
</scm>

<modules>
<module>api</module>
Expand Down Expand Up @@ -165,9 +164,9 @@
<version>2.35.0</version>
<configuration>
<java>
<toggleOffOn/>
<importOrder/>
<removeUnusedImports/>
<toggleOffOn />
<importOrder />
<removeUnusedImports />
<palantirJavaFormat>
<version>2.28.0</version>
</palantirJavaFormat>
Expand Down
10 changes: 4 additions & 6 deletions processor/pom.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.pwinckles.jdbcgen</groupId>
<artifactId>jdbc-gen-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>jdbc-gen-processor</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>

<name>jdbc-gen-processor</name>
<description>Annotation processor for jdbc-gen</description>
Expand All @@ -21,7 +19,7 @@
<dependency>
<groupId>com.pwinckles.jdbcgen</groupId>
<artifactId>jdbc-gen-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.squareup</groupId>
Expand Down
10 changes: 4 additions & 6 deletions test/pom.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>com.pwinckles.jdbcgen</groupId>
<artifactId>jdbc-gen-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>jdbc-gen-test</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>

<name>jdbc-gen-test</name>
<description>Tests for jdbc-gen</description>
Expand All @@ -21,7 +19,7 @@
<dependency>
<groupId>com.pwinckles.jdbcgen</groupId>
<artifactId>jdbc-gen-processor</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
</dependency>

<!-- Test -->
Expand Down

0 comments on commit 9d54bf5

Please sign in to comment.