Hi all,
I just released 1.0.0-SNAPSHOT of the Java SDK. This should be available
publicly for testing.
To test the SDK, add the following to your build configuration:
Maven:
<repositories>
<repository>
<id>apache-snapshots</id>
<url>https://repository.apache.org/content/repositories/snapshots/</url>
<snapshots><enabled>true</enabled></snapshots>
<releases><enabled>false</enabled></releases>
</repository>
</repositories>
<dependency>
<groupId>org.apache.airflow</groupId>
<artifactId>airflow-sdk</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
Gradle:
repositories {
maven {
url 'https://repository.apache.org/content/repositories/snapshots/'
mavenContent { snapshotsOnly() }
}
}
dependencies {
implementation 'org.apache.airflow:airflow-sdk:1.0.0-SNAPSHOT'
}
If you use an IDE, it should fetch the corresponding Javadocc automatically
when you install the snapshot.
Happy testing!
Best,
TP