forked from ElektraInitiative/libelektra
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ElektraInitiative#3713 initial gradle project
- Loading branch information
Michael Tucek
committed
Mar 18, 2021
1 parent
eee34e7
commit 1e1306d
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |