Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
efonsell committed Aug 21, 2023
1 parent 38a5743 commit 9b9ab0e
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions nflow-examples/spring-boot/bare-minimum/gradle/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
plugins {
id 'org.springframework.boot' version '2.4.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'org.springframework.boot' version '3.1.2'
id 'io.spring.dependency-management' version '1.1.3'
id 'java'
}

group = 'io.nflow.springboot.bareminimum.gradle'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
sourceCompatibility = '17'

repositories {
mavenCentral()
Expand All @@ -16,9 +16,9 @@ repositories {
}

dependencies {
implementation 'io.nflow:nflow-engine:8.0.0'
implementation 'io.nflow:nflow-engine:9.0.0-SNAPSHOT'
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
runtimeOnly 'com.h2database:h2:2.1.212'
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>8.0.0</version>
<version>9.0.0-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dependencies {
implementation(logback("logback-classic"))
implementation(nflow("nflow-rest-api-spring-web"))

runtimeOnly("com.h2database:h2:2.1.212")
runtimeOnly("com.h2database:h2:2.2.220")

testImplementation(kotlin("test"))
testImplementation(springBoot("test"))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
logbackVersion=1.2.10
nflowVersion=8.0.0
logbackVersion=1.4.11
nflowVersion=9.0.0-SNAPSHOT
14 changes: 7 additions & 7 deletions nflow-examples/spring-boot/full-stack/gradle/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
plugins {
id 'org.springframework.boot' version '2.4.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'de.undercouch.download' version '4.1.1'
id 'org.springframework.boot' version '3.1.2'
id 'io.spring.dependency-management' version '1.1.3'
id 'de.undercouch.download' version '5.4.0'
id 'java'
}

group = 'io.nflow.springboot.fullstack.maven'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '11'
sourceCompatibility = '17'

repositories {
mavenLocal()
Expand All @@ -22,12 +22,12 @@ configurations {
}

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

task resolveNflowExplorer(type: Copy) {
Expand Down
6 changes: 3 additions & 3 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>8.0.0</version>
<version>9.0.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
Expand Down Expand Up @@ -64,8 +64,8 @@
<artifactItems>
<artifactItem>
<groupId>io.nflow</groupId>
<artifactId>nflow-explorer-ng</artifactId>
<version>8.0.0</version>
<artifactId>nflow-explorer</artifactId>
<version>9.0.0-SNAPSHOT</version>
<type>tar.gz</type>
<overWrite>true</overWrite>
<outputDirectory>${project.build.outputDirectory}/static/explorer</outputDirectory>
Expand Down

0 comments on commit 9b9ab0e

Please sign in to comment.