Skip to content

Commit

Permalink
Ufir stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
liorsl committed Jul 16, 2022
1 parent bfa1879 commit 862e8c5
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
20 changes: 19 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,19 +1,37 @@
plugins {
id 'java'
id 'maven-publish'
}

group 'net.apartium.cocoa-beans'
version '1.0-SNAPSHOT'

allprojects {
apply plugin: 'java-library'
apply plugin: 'maven-publish'

publishing {
repositories {
maven {
name = "GitHubPackages"
url = "https://maven.pkg.github.com/poweredbyapartium/cocoa-beans"
credentials {
username = System.getenv("GITHUB_ACTOR")
password = System.getenv("GITHUB_TOKEN")
}
}
}
}

repositories {
mavenCentral()

}

dependencies {
api 'com.fasterxml.jackson.core:jackson-annotations:2.12.7'
api 'com.fasterxml.jackson.core:jackson-annotations:2.13.3'
compileOnly 'org.jetbrains:annotations:23.0.0'

}

test {
Expand Down
1 change: 0 additions & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ group 'net.apartium.cocoa-beans'
version parent.version

dependencies {
implementation 'org.jetbrains:annotations:20.1.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
Expand Down

0 comments on commit 862e8c5

Please sign in to comment.