Skip to content

Commit

Permalink
Bump version to 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
casid committed May 8, 2021
1 parent f82189b commit 07157ae
Show file tree
Hide file tree
Showing 21 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion jte-benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<dependency>
<groupId>gg.jte</groupId>
<artifactId>jte</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jte-deploy-nexus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>gg.jte</groupId>
<artifactId>jte-parent</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</parent>

<!-- This entire module is an insane hack just because of this bug: https://issues.sonatype.org/browse/NEXUS-9138 -->
Expand Down
6 changes: 3 additions & 3 deletions jte-gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ repositories {
}

dependencies {
implementation('gg.jte:jte:1.10.0-SNAPSHOT')
implementation('gg.jte:jte-kotlin:1.10.0-SNAPSHOT')
implementation('gg.jte:jte:1.10.0')
implementation('gg.jte:jte-kotlin:1.10.0')
}

group = 'gg.jte'
version = '1.10.0-SNAPSHOT'
version = '1.10.0'

compileJava {
sourceCompatibility = '1.8'
Expand Down
6 changes: 3 additions & 3 deletions jte-hotreload-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>gg.jte</groupId>
<artifactId>jte-hotreload-test</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<packaging>jar</packaging>

<properties>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>gg.jte</groupId>
<artifactId>jte</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -75,7 +75,7 @@
<plugin>
<groupId>gg.jte</groupId>
<artifactId>jte-maven-plugin</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<configuration>
<sourceDirectory>${basedir}/src/main/jte</sourceDirectory>
<contentType>Html</contentType>
Expand Down
4 changes: 2 additions & 2 deletions jte-jsp-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>gg.jte</groupId>
<artifactId>jte-jsp-converter</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<packaging>jar</packaging>

<properties>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>gg.jte</groupId>
<artifactId>jte</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion jte-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>gg.jte</groupId>
<artifactId>jte-parent</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</parent>

<name>jte-kotlin</name>
Expand Down
2 changes: 1 addition & 1 deletion jte-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>gg.jte</groupId>
<artifactId>jte-parent</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</parent>

<name>jte-maven-plugin</name>
Expand Down
4 changes: 2 additions & 2 deletions jte-runtime-cp-test-gradle-convention/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.apache.tools.ant.taskdefs.condition.Os

plugins {
id 'java'
id 'gg.jte.gradle' version '1.10.0-SNAPSHOT'
id 'gg.jte.gradle' version '1.10.0'
id "com.palantir.graal" version "0.7.2" /* for native image
There are a few native image plugins around. I used this one because it manages downloading and caching GraalVM
if necessary. */
Expand All @@ -29,7 +29,7 @@ test {
}

dependencies {
implementation('gg.jte:jte-runtime:1.10.0-SNAPSHOT')
implementation('gg.jte:jte-runtime:1.10.0')
testImplementation('org.junit.jupiter:junit-jupiter:5.6.2')
testImplementation('org.assertj:assertj-core:3.15.0')
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
Expand Down
4 changes: 2 additions & 2 deletions jte-runtime-cp-test-gradle-kotlin-convention/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.4.30"
id("gg.jte.gradle") version("1.10.0-SNAPSHOT")
id("gg.jte.gradle") version("1.10.0")
}

repositories {
Expand All @@ -13,7 +13,7 @@ repositories {
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("org.junit.jupiter:junit-jupiter:5.4.2")
implementation("gg.jte:jte-runtime:1.10.0-SNAPSHOT")
implementation("gg.jte:jte-runtime:1.10.0")
}

jte {
Expand Down
4 changes: 2 additions & 2 deletions jte-runtime-cp-test-gradle-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import java.nio.file.Paths

plugins {
kotlin("jvm") version "1.4.30"
id("gg.jte.gradle") version("1.10.0-SNAPSHOT")
id("gg.jte.gradle") version("1.10.0")
}

repositories {
Expand All @@ -14,7 +14,7 @@ repositories {
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation("org.junit.jupiter:junit-jupiter:5.4.2")
implementation("gg.jte:jte-runtime:1.10.0-SNAPSHOT")
implementation("gg.jte:jte-runtime:1.10.0")
}

tasks.test {
Expand Down
4 changes: 2 additions & 2 deletions jte-runtime-cp-test-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import org.apache.tools.ant.taskdefs.condition.Os

plugins {
id 'java'
id 'gg.jte.gradle' version '1.10.0-SNAPSHOT'
id 'gg.jte.gradle' version '1.10.0'
id "com.palantir.graal" version "0.7.2" /* for native image
There are a few native image plugins around. I used this one because it manages downloading and caching GraalVM
if necessary. */
Expand All @@ -31,7 +31,7 @@ test {
}

dependencies {
implementation('gg.jte:jte-runtime:1.10.0-SNAPSHOT')
implementation('gg.jte:jte-runtime:1.10.0')
testImplementation('org.junit.jupiter:junit-jupiter:5.6.2')
testImplementation('org.assertj:assertj-core:3.15.0')
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
Expand Down
6 changes: 3 additions & 3 deletions jte-runtime-cp-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>gg.jte</groupId>
<artifactId>jte-runtime-cp-test</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<packaging>jar</packaging>

<properties>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>gg.jte</groupId>
<artifactId>jte-runtime</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -75,7 +75,7 @@
<plugin>
<groupId>gg.jte</groupId>
<artifactId>jte-maven-plugin</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<configuration>
<sourceDirectory>${basedir}/src/main/jte</sourceDirectory>
<contentType>Html</contentType>
Expand Down
4 changes: 2 additions & 2 deletions jte-runtime-test-gradle-convention/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

plugins {
id 'java'
id 'gg.jte.gradle' version '1.10.0-SNAPSHOT'
id 'gg.jte.gradle' version '1.10.0'
}

repositories {
Expand All @@ -14,7 +14,7 @@ test {
}

dependencies {
implementation('gg.jte:jte-runtime:1.10.0-SNAPSHOT')
implementation('gg.jte:jte-runtime:1.10.0')
testImplementation('org.junit.jupiter:junit-jupiter:5.6.2')
testImplementation('org.assertj:assertj-core:3.15.0')
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
Expand Down
4 changes: 2 additions & 2 deletions jte-runtime-test-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import java.nio.file.Paths

plugins {
id 'java'
id 'gg.jte.gradle' version '1.10.0-SNAPSHOT'
id 'gg.jte.gradle' version '1.10.0'
}

repositories {
Expand All @@ -15,7 +15,7 @@ test {
}

dependencies {
implementation('gg.jte:jte-runtime:1.10.0-SNAPSHOT')
implementation('gg.jte:jte-runtime:1.10.0')
testImplementation('org.junit.jupiter:junit-jupiter:5.6.2')
testImplementation('org.assertj:assertj-core:3.15.0')
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.2'
Expand Down
6 changes: 3 additions & 3 deletions jte-runtime-test-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>gg.jte</groupId>
<artifactId>jte-runtime-test-kotlin</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<packaging>jar</packaging>

<properties>
Expand All @@ -22,7 +22,7 @@
<dependency>
<groupId>gg.jte</groupId>
<artifactId>jte-runtime</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -82,7 +82,7 @@
<plugin>
<groupId>gg.jte</groupId>
<artifactId>jte-maven-plugin</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<configuration>
<sourceDirectory>${basedir}/src/main/jte</sourceDirectory>
<targetDirectory>${basedir}/jte-classes</targetDirectory>
Expand Down
6 changes: 3 additions & 3 deletions jte-runtime-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>gg.jte</groupId>
<artifactId>jte-runtime-test</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<packaging>jar</packaging>

<properties>
Expand All @@ -21,7 +21,7 @@
<dependency>
<groupId>gg.jte</groupId>
<artifactId>jte-runtime</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -75,7 +75,7 @@
<plugin>
<groupId>gg.jte</groupId>
<artifactId>jte-maven-plugin</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<configuration>
<sourceDirectory>${basedir}/src/main/jte</sourceDirectory>
<targetDirectory>${basedir}/jte-classes</targetDirectory>
Expand Down
2 changes: 1 addition & 1 deletion jte-runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>gg.jte</groupId>
<artifactId>jte-parent</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion jte-test-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>gg.jte</groupId>
<artifactId>jte-parent</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion jte-watcher/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<parent>
<groupId>gg.jte</groupId>
<artifactId>jte-parent</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion jte/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>gg.jte</groupId>
<artifactId>jte-parent</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
</parent>

<name>jte</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>gg.jte</groupId>
<artifactId>jte-parent</artifactId>
<version>1.10.0-SNAPSHOT</version>
<version>1.10.0</version>
<packaging>pom</packaging>

<name>jte-parent</name>
Expand Down

0 comments on commit 07157ae

Please sign in to comment.