Skip to content

Commit

Permalink
Set nflow-example dependencies to v10.0.0 (release.sh expects actual …
Browse files Browse the repository at this point in the history
…release versions, not SNAPSHOT releases)
  • Loading branch information
eputtone committed Oct 4, 2024
1 parent 692acf4 commit 19edc95
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repositories {
}

dependencies {
implementation 'io.nflow:nflow-engine:9.0.0-SNAPSHOT'
implementation 'io.nflow:nflow-engine:10.0.0'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
runtimeOnly 'com.h2database:h2:2.2.220'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
Expand Down
2 changes: 1 addition & 1 deletion nflow-examples/spring-boot/bare-minimum/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>io.nflow</groupId>
<artifactId>nflow-engine</artifactId>
<version>9.0.0-SNAPSHOT</version>
<version>10.0.0</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
logbackVersion=1.4.11
nflowVersion=9.0.0-SNAPSHOT
nflowVersion=10.0.0
4 changes: 2 additions & 2 deletions nflow-examples/spring-boot/full-stack/gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ configurations {
}

dependencies {
implementation 'io.nflow:nflow-rest-api-spring-web:9.0.0-SNAPSHOT'
implementation 'io.nflow:nflow-rest-api-spring-web:10.0.0'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.springframework.boot:spring-boot-starter-web'
runtimeOnly 'com.h2database:h2:2.2.220'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
nflowExplorer group: 'io.nflow', name: 'nflow-explorer', version: '9.0.0-SNAPSHOT', ext: 'tar.gz'
nflowExplorer group: 'io.nflow', name: 'nflow-explorer', version: '10.0.0', ext: 'tar.gz'
}

task resolveNflowExplorer(type: Copy) {
Expand Down
4 changes: 2 additions & 2 deletions nflow-examples/spring-boot/full-stack/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<dependency>
<groupId>io.nflow</groupId>
<artifactId>nflow-rest-api-spring-web</artifactId>
<version>9.0.0-SNAPSHOT</version>
<version>10.0.0</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
Expand Down Expand Up @@ -65,7 +65,7 @@
<artifactItem>
<groupId>io.nflow</groupId>
<artifactId>nflow-explorer</artifactId>
<version>9.0.0-SNAPSHOT</version>
<version>10.0.0</version>
<type>tar.gz</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.outputDirectory}/static/explorer</outputDirectory>
Expand Down

0 comments on commit 19edc95

Please sign in to comment.