Skip to content

Commit

Permalink
Expose libs in server
Browse files Browse the repository at this point in the history
  • Loading branch information
magx2 committed Oct 28, 2024
1 parent 32f3482 commit 0612f42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ allprojects {
}

allProjects {
apply plugin: 'java'
apply plugin: 'java-library'
apply plugin: 'maven-publish'
apply plugin: 'signing'
group = 'pl.grzeslowski.jSupla'
Expand Down
4 changes: 2 additions & 2 deletions server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ repositories {
}

dependencies {
implementation rootProject.project("protocol")
api rootProject.project("protocol")
api group: 'io.netty', name: 'netty-all', version: '4.1.112.Final'
implementation group: 'jakarta.annotation', name: 'jakarta.annotation-api', version: '2.1.1'
implementation group: 'io.netty', name: 'netty-all', version: '4.1.112.Final'
implementation 'org.javatuples:javatuples:1.2'

testImplementation rootProject.project("protocol").sourceSets.test.output
Expand Down

0 comments on commit 0612f42

Please sign in to comment.