Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ object Versions {
val jackson = "2.9.10.4"
val animalSniffer = "1.18"
val apiguardian = "1.1.0"
val javaxAnnotation = "1.3.2"

/**
* Version of the SLF4J library.
Expand Down Expand Up @@ -163,7 +164,8 @@ object Build {
}

object Gen {
val javaPoet = "com.squareup:javapoet:${Versions.javaPoet}"
val javaPoet = "com.squareup:javapoet:${Versions.javaPoet}"
val javaxAnnotation = "javax.annotation:javax.annotation-api:${Versions.javaxAnnotation}"
}

object Grpc {
Expand Down
4 changes: 3 additions & 1 deletion buildSrc/src/main/kotlin/io/spine/gradle/internal/deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ object Versions {
val jackson = "2.9.10.4"
val animalSniffer = "1.18"
val apiguardian = "1.1.0"
val javaxAnnotation = "1.3.2"

/**
* Version of the SLF4J library.
Expand Down Expand Up @@ -163,7 +164,8 @@ object Build {
}

object Gen {
val javaPoet = "com.squareup:javapoet:${Versions.javaPoet}"
val javaPoet = "com.squareup:javapoet:${Versions.javaPoet}"
val javaxAnnotation = "javax.annotation:javax.annotation-api:${Versions.javaxAnnotation}"
}

object Grpc {
Expand Down
355 changes: 235 additions & 120 deletions license-report.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ all modules and does not describe the project structure per-subproject.

<groupId>io.spine</groupId>
<artifactId>spine-base</artifactId>
<version>1.5.18</version>
<version>1.5.19</version>

<inceptionYear>2015</inceptionYear>

Expand Down Expand Up @@ -154,7 +154,7 @@ all modules and does not describe the project structure per-subproject.
<dependency>
<groupId>io.spine.tools</groupId>
<artifactId>spine-protoc-plugin</artifactId>
<version>1.5.18</version>
<version>1.5.19</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -215,7 +215,7 @@ all modules and does not describe the project structure per-subproject.
<dependency>
<groupId>net.sourceforge.pmd</groupId>
<artifactId>pmd-java</artifactId>
<version>6.20.0</version>
<version>6.24.0</version>
</dependency>
<dependency>
<groupId>org.jacoco</groupId>
Expand Down
29 changes: 0 additions & 29 deletions pull.bat

This file was deleted.

1 change: 1 addition & 0 deletions tools/protoc-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ dependencies {
implementation(project(":protoc-api"))
implementation(project(":validation-generator"))
implementation(Deps.gen.javaPoet)
implementation(Deps.gen.javaxAnnotation)

testImplementation(project(":base"))
testImplementation(project(":testlib"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ object Versions {
val jackson = "2.9.10.4"
val animalSniffer = "1.18"
val apiguardian = "1.1.0"
val javaxAnnotation = "1.3.2"

/**
* Version of the SLF4J library.
Expand Down Expand Up @@ -163,7 +164,8 @@ object Build {
}

object Gen {
val javaPoet = "com.squareup:javapoet:${Versions.javaPoet}"
val javaPoet = "com.squareup:javapoet:${Versions.javaPoet}"
val javaxAnnotation = "javax.annotation:javax.annotation-api:${Versions.javaxAnnotation}"
}

object Grpc {
Expand Down
1 change: 1 addition & 0 deletions tools/tool-base/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ group = "io.spine.tools"
dependencies {
api(project(":base"))
implementation(Deps.gen.javaPoet)
implementation(Deps.gen.javaxAnnotation)

testImplementation(project(":testlib"))
}
1 change: 1 addition & 0 deletions tools/validation-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ group = "io.spine.tools"
dependencies {
api(Deps.gen.javaPoet)
implementation(project(":tool-base"))
implementation(Deps.gen.javaxAnnotation)
testImplementation(project(":base"))
testImplementation(project(":testlib"))
}
2 changes: 1 addition & 1 deletion version.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* as we want to manage the versions in a single source.
*/

val SPINE_VERSION = "1.5.18"
val SPINE_VERSION = "1.5.19"

project.extra.apply {
this["spineVersion"] = SPINE_VERSION
Expand Down