Skip to content

Commit

Permalink
ElektraInitiative#3713 initial gradle project
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Tucek committed Mar 18, 2021
1 parent eee34e7 commit 1e1306d
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/bindings/jna/libelektra/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// apply project configuration for java libraries
apply from: "$rootProject.projectDir/java-library.gradle"

// apply project dependencies
apply from: 'dependencies.gradle'

// apply maven publish configuration
ext {
artifactId = 'libelektra'
pomName = "$project.name - $parent.name"
pomDescription = 'Low-level Elektra java binding to elekrify Java applications and write Elektra plugins using Java.'
pomUrl = 'https://www.libelektra.org'

}
apply from: "$rootProject.projectDir/maven-publish.gradle"
7 changes: 7 additions & 0 deletions src/bindings/jna/libelektra/dependencies.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dependencies {
// jna
api "net.java.dev.jna:jna:$jnaVersion"

// junit
testImplementation "junit:junit:$junitVersion"
}

0 comments on commit 1e1306d

Please sign in to comment.