-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* .groovy -> .kts * Add 'com.vanniktech.maven.publish' plug in * Version bump.
- Loading branch information
Showing
62 changed files
with
566 additions
and
759 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
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 |
---|---|---|
@@ -1,9 +1,23 @@ | ||
import com.vanniktech.maven.publish.JavaLibrary | ||
import com.vanniktech.maven.publish.JavadocJar | ||
|
||
plugins { | ||
id("java-library") | ||
id("com.vanniktech.maven.publish") version "0.29.0" | ||
} | ||
|
||
mavenPublishing { | ||
configure( | ||
JavaLibrary( | ||
javadocJar = JavadocJar.Javadoc(), | ||
sourcesJar = true, | ||
) | ||
) | ||
} | ||
apply(from = "../gradle/release/release-java-lib.gradle") | ||
|
||
|
||
|
||
java { | ||
sourceCompatibility = JavaVersion.VERSION_1_7 | ||
targetCompatibility = JavaVersion.VERSION_1_7 | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} |
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,5 @@ | ||
POM_NAME=Antonio annotation | ||
POM_DESCRIPTION=Antonio annotation | ||
POM_URL=https://github.com/naverz/Antonio/tree/master/antonio-annotation | ||
POM_ARTIFACT_ID=antonio-annotation | ||
VERSION_NAME=0.0.8-alpha |
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
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,5 @@ | ||
POM_NAME=Antonio compiler | ||
POM_DESCRIPTION=Antonio compiler | ||
POM_URL=https://github.com/naverz/Antonio/tree/master/antonio-compiler | ||
POM_ARTIFACT_ID=antonio-compiler | ||
VERSION_NAME=0.0.8-alpha |
This file was deleted.
Oops, something went wrong.
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,37 @@ | ||
import io.github.naverz.antonio.buildsrc.* | ||
|
||
plugins { | ||
id("com.android.library") | ||
id("org.jetbrains.kotlin.android") | ||
id("com.vanniktech.maven.publish") version "0.29.0" | ||
} | ||
|
||
android { | ||
namespace = "io.github.naverz.antonio.core.paging2" | ||
compileSdk = COMPILE_SDK | ||
|
||
defaultConfig { | ||
minSdk = 16 | ||
|
||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
consumerProguardFiles("consumer-rules.pro") | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
|
||
kotlinOptions { | ||
jvmTarget = "17" | ||
freeCompilerArgs = freeCompilerArgs + "-opt-in=kotlin.RequiresOptIn" | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(Android.PAGING2) | ||
implementation(project(path = ":antonio-core")) | ||
testImplementation(TestDep.JUNIT) | ||
androidTestImplementation(TestDep.EXT_JUNIT) | ||
androidTestImplementation(TestDep.ESPRESSO) | ||
} |
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,5 @@ | ||
POM_NAME=Antonio core paging2 | ||
POM_DESCRIPTION=Antonio core paging2 | ||
POM_URL=https://github.com/naverz/Antonio/tree/master/antonio-core-paging2 | ||
POM_ARTIFACT_ID=antonio-core-paging2 | ||
VERSION_NAME=1.0.9-alpha |
2 changes: 1 addition & 1 deletion
2
...paging2/core/ExampleInstrumentedTest.java → ...paging2/core/ExampleInstrumentedTest.java
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest package="com.github.lakelab.antonio.paging2.core" /> | ||
<manifest package="io.github.naverz.antonio.core.paging2" /> |
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
2 changes: 1 addition & 1 deletion
2
...antonio/paging3/core/ExampleUnitTest.java → ...antonio/paging2/core/ExampleUnitTest.java
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
This file was deleted.
Oops, something went wrong.
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,37 @@ | ||
import io.github.naverz.antonio.buildsrc.* | ||
|
||
plugins { | ||
id("com.android.library") | ||
id("org.jetbrains.kotlin.android") | ||
id("com.vanniktech.maven.publish") version "0.29.0" | ||
} | ||
|
||
android { | ||
namespace = "io.github.naverz.antonio.core.paging3" | ||
compileSdk = COMPILE_SDK | ||
|
||
defaultConfig { | ||
minSdk = 16 | ||
|
||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
consumerProguardFiles("consumer-rules.pro") | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_17 | ||
targetCompatibility = JavaVersion.VERSION_17 | ||
} | ||
|
||
kotlinOptions { | ||
jvmTarget = "17" | ||
freeCompilerArgs = freeCompilerArgs + "-opt-in=kotlin.RequiresOptIn" | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(Android.PAGING3) | ||
implementation(project(path = ":antonio-core")) | ||
testImplementation(TestDep.JUNIT) | ||
androidTestImplementation(TestDep.EXT_JUNIT) | ||
androidTestImplementation(TestDep.ESPRESSO) | ||
} |
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,5 @@ | ||
POM_NAME=Antonio core paging3 | ||
POM_DESCRIPTION=Antonio core paging3 | ||
POM_URL=https://github.com/naverz/Antonio/tree/master/antonio-core-paging3 | ||
POM_ARTIFACT_ID=antonio-core-paging3 | ||
VERSION_NAME=1.0.9-alpha |
2 changes: 1 addition & 1 deletion
2
...paging3/core/ExampleInstrumentedTest.java → ...paging3/core/ExampleInstrumentedTest.java
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest package="com.github.lakelab.antonio.paging3.core" /> | ||
<manifest package="io.github.naverz.antonio.core.paging3" /> |
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
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
2 changes: 1 addition & 1 deletion
2
...antonio/paging2/core/ExampleUnitTest.java → ...antonio/paging3/core/ExampleUnitTest.java
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.