Skip to content

Commit

Permalink
Cleanup build
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesa2 committed Jun 12, 2024
1 parent 2e6fe05 commit dd31347
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 61 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Android-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
distribution: 'adopt'
java-version: ${{ matrix.java_version }}
- name: build release
run: ./gradlew assembleRelease
run: ./gradlew assemble
env:
VERSION: ${{ github.ref }}
- name: investigate aar
Expand Down
2 changes: 1 addition & 1 deletion IOIOLibAndroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ publishing {
}
}
}
}
}
7 changes: 0 additions & 7 deletions IOIOLibCore/.classpath

This file was deleted.

18 changes: 0 additions & 18 deletions IOIOLibCore/.project

This file was deleted.

7 changes: 0 additions & 7 deletions IOIOLibPC/.classpath

This file was deleted.

24 changes: 0 additions & 24 deletions IOIOLibPC/.project

This file was deleted.

13 changes: 10 additions & 3 deletions IOIOLibPC/build.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
apply plugin: 'java-library'
plugins {
id 'java-library'
}

javadoc {
source = fileTree(dir: 'src/main/java')
failOnError = false
}

task javadocJar(type: Jar) {
tasks.register('javadocJar', Jar) {
archiveClassifier = 'javadoc'
from javadoc
}

task sourcesJar(type: Jar) {
tasks.register('sourcesJar', Jar) {
archiveClassifier = 'sources'
from sourceSets.main.allSource
}
Expand All @@ -23,3 +25,8 @@ dependencies {
implementation 'com.sparetimelabs:purejavacomm:1.0.1'
api project(":IOIOLibCore")
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

0 comments on commit dd31347

Please sign in to comment.