Skip to content

Commit

Permalink
Merge pull request #8 from airbrake/specify-versions
Browse files Browse the repository at this point in the history
Specify exact package versions

The release process was resulting in errors with these `+` characters
used to specify versions in the pom.xml. Our main library, Javabrake,
does not use this version specification. We should specify the exact
package versions we depend on to avoid this issue.
  • Loading branch information
thompiler authored Mar 26, 2021
2 parents 4d435fa + ebfadf2 commit 1d92c88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ repositories {
}

dependencies {
compile 'io.airbrake:javabrake:0.1.+'
compile 'ch.qos.logback:logback-classic:1.2.+'
compile 'io.airbrake:javabrake:0.1.6'
compile 'ch.qos.logback:logback-classic:1.2.3'
compile 'org.slf4j:slf4j-api:1.7.25'

testImplementation 'junit:junit:4.+'
testImplementation 'junit:junit:4.12'
}

test {
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<dependency>
<groupId>io.airbrake</groupId>
<artifactId>javabrake</artifactId>
<version>0.1.+</version>
<version>0.1.6</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.+</version>
<version>1.2.3</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand All @@ -35,7 +35,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.+</version>
<version>4.12</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down

0 comments on commit 1d92c88

Please sign in to comment.