Skip to content

Commit

Permalink
Merge pull request #15 from rwth-acis/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
phil-cd authored Aug 2, 2022
2 parents 33e2263 + 7e58d79 commit 420dafe
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ publishing {
maven(MavenPublication) {
groupId = 'i5'
artifactId = 'las2peer-api-test-model'
version = '0.1.7'
version = '0.1.8'

from components.java
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ public int getId() {
return this.id;
}

public void setId(int id) {
this.id = id;
}

public void setStatus(String status) {
this.status = status;
}
Expand Down

0 comments on commit 420dafe

Please sign in to comment.