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
qld-gov-au-bot-ServiceAccount committed Jul 29, 2024
1 parent e4ef2e2 commit 3c242ed
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 31 deletions.
16 changes: 7 additions & 9 deletions kiteworks-native-client/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>au.gov.qld.ssq</groupId>
<artifactId>kiteworks-native-client</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0</version>

<properties>
<maven.compiler.source>21</maven.compiler.source>
Expand Down Expand Up @@ -99,8 +97,8 @@
<include>.gitignore</include>
</includes>
<!-- define the steps to apply to those files -->
<trimTrailingWhitespace/>
<endWithNewline/>
<trimTrailingWhitespace />
<endWithNewline />
<indent>
<spaces>true</spaces> <!-- or <tabs>true</tabs> -->
<spacesPerTab>4</spacesPerTab> <!-- optional,default is 4 -->
Expand All @@ -117,8 +115,8 @@
<style>AOSP</style>
<reflowLongStrings>true</reflowLongStrings>
</googleJavaFormat>
<removeUnusedImports/>
<importOrder/>
<removeUnusedImports />
<importOrder />
</java>
</configuration>
</plugin>
Expand Down Expand Up @@ -150,7 +148,7 @@
</profiles>

<dependencies>
<dependency><groupId>au.gov.qld.ssq</groupId><artifactId>kiteworks-swagger-gen</artifactId><version>1.0-SNAPSHOT</version></dependency>
<dependency><groupId>au.gov.qld.ssq</groupId><artifactId>kiteworks-swagger-gen</artifactId><version>1.0.0</version></dependency>

<dependency><groupId>org.slf4j</groupId><artifactId>slf4j-api</artifactId><version>2.0.13</version><scope>compile</scope></dependency>

Expand Down
8 changes: 3 additions & 5 deletions kiteworks-spring-service/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>au.gov.qld.ssq</groupId>
<artifactId>kiteworks-spring-service</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0</version>

<properties>
<maven.compiler.release>21</maven.compiler.release>
Expand Down Expand Up @@ -36,7 +34,7 @@
</dependencyManagement>

<dependencies>
<dependency><groupId>au.gov.qld.ssq</groupId><artifactId>kiteworks-native-client</artifactId><version>1.0-SNAPSHOT</version></dependency>
<dependency><groupId>au.gov.qld.ssq</groupId><artifactId>kiteworks-native-client</artifactId><version>1.0.0</version></dependency>

<dependency><groupId>org.springframework</groupId><artifactId>spring-beans</artifactId></dependency>
<dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId></dependency>
Expand Down
14 changes: 6 additions & 8 deletions kiteworks-swagger-gen/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>
<parent>
<groupId>au.gov.qld.ssq</groupId>
<artifactId>kiteworks_integration</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0</version>
</parent>

<artifactId>kiteworks-swagger-gen</artifactId>
Expand Down Expand Up @@ -149,8 +147,8 @@
<include>.gitignore</include>
</includes>
<!-- define the steps to apply to those files -->
<trimTrailingWhitespace/>
<endWithNewline/>
<trimTrailingWhitespace />
<endWithNewline />
<indent>
<spaces>true</spaces> <!-- or <tabs>true</tabs> -->
<spacesPerTab>4</spacesPerTab> <!-- optional,default is 4 -->
Expand All @@ -167,8 +165,8 @@
<style>AOSP</style>
<reflowLongStrings>true</reflowLongStrings>
</googleJavaFormat>
<removeUnusedImports/>
<importOrder/>
<removeUnusedImports />
<importOrder />
</java>
</configuration>
</plugin>
Expand Down
16 changes: 7 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
<?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>au.gov.qld.ssq</groupId>
<artifactId>kiteworks_integration</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.0</version>
<packaging>pom</packaging>

<scm>
<connection>scm:git:${project.scm.url}</connection>
<developerConnection>scm:git:${project.scm.url}</developerConnection>
<url>[email protected]:qld-gov-au/kiteworks-integration.git</url>
<tag>HEAD</tag>
<tag>v1.0.0</tag>
</scm>

<distributionManagement>
Expand Down Expand Up @@ -91,8 +89,8 @@
<include>.gitignore</include>
</includes>
<!-- define the steps to apply to those files -->
<trimTrailingWhitespace/>
<endWithNewline/>
<trimTrailingWhitespace />
<endWithNewline />
<indent>
<spaces>true</spaces> <!-- or <tabs>true</tabs> -->
<spacesPerTab>4</spacesPerTab> <!-- optional,default is 4 -->
Expand All @@ -109,8 +107,8 @@
<style>AOSP</style>
<reflowLongStrings>true</reflowLongStrings>
</googleJavaFormat>
<removeUnusedImports/>
<importOrder/>
<removeUnusedImports />
<importOrder />
</java>
</configuration>
</plugin>
Expand Down

0 comments on commit 3c242ed

Please sign in to comment.