mirror of
https://github.com/tribufu/tribufu-java
synced 2026-06-01 09:42:37 +00:00
Use mintaka from maven repo
This commit is contained in:
parent
2f3d5fef56
commit
475d1c5dc6
4 changed files with 3 additions and 9 deletions
|
|
@ -7,6 +7,7 @@ archivesBaseName = "TribufuExample"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven { url = "https://mvn.tribufu.com/releases" }
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
|
||||||
|
|
@ -7,13 +7,14 @@ archivesBaseName = "Tribufu"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
maven { url = "https://mvn.tribufu.com/releases" }
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api "org.apache.commons:commons-math3:3.6.1"
|
api "org.apache.commons:commons-math3:3.6.1"
|
||||||
implementation "com.google.code.gson:gson:2.8.9"
|
implementation "com.google.code.gson:gson:2.8.9"
|
||||||
implementation "com.google.guava:guava:31.1-jre"
|
implementation "com.google.guava:guava:31.1-jre"
|
||||||
implementation project(':MintakaJvm')
|
implementation "dev.mintaka:Mintaka:0.1.0"
|
||||||
testImplementation "org.junit.jupiter:junit-jupiter:5.9.1"
|
testImplementation "org.junit.jupiter:junit-jupiter:5.9.1"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,3 @@
|
||||||
#!/usr/bin/env pwsh
|
#!/usr/bin/env pwsh
|
||||||
|
|
||||||
.\gradlew build
|
.\gradlew build
|
||||||
|
|
||||||
New-Item "build/libs" -ItemType Directory -Force
|
|
||||||
Remove-Item -Path "build/libs/*" -Force
|
|
||||||
Copy-Item -Path "./lib/build/libs/*.jar" -Destination "./build/libs" -Force
|
|
||||||
Copy-Item -Path "./vendor/MintakaJvm/lib/build/libs/*.jar" -Destination "./build/libs" -Force
|
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,3 @@ plugins {
|
||||||
rootProject.name = 'TribufuJvm'
|
rootProject.name = 'TribufuJvm'
|
||||||
include('lib')
|
include('lib')
|
||||||
include('examples')
|
include('examples')
|
||||||
|
|
||||||
include 'MintakaJvm'
|
|
||||||
project(':MintakaJvm').projectDir = file('vendor/MintakaJvm/lib')
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue