X Tutup
Skip to content
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,15 @@ before_script:
- export TERM=dumb

script:
- mvn -f AndroidAnnotations/pom.xml install -P travis
- mvn -f examples/maven/pom.xml install
- cd $TRAVIS_BUILD_DIR/AndroidAnnotations
- ./mvnw install -P travis
- cd $TRAVIS_BUILD_DIR/examples/maven
- ./mvnw install
- cd $TRAVIS_BUILD_DIR
- ./examples/gradle/gradlew assembleDebug --build-file examples/gradle/build.gradle

after_success:
- if [[ $TRAVIS_REPO_SLUG == 'androidannotations/androidannotations' && $TRAVIS_BRANCH == 'develop' && $TRAVIS_PULL_REQUEST == 'false' && $TRAVIS_JDK_VERSION == 'oraclejdk7' ]]; then mvn -f AndroidAnnotations/pom.xml -DskipTests -Dquiet -s settings.xml deploy ; fi
- if [[ $TRAVIS_REPO_SLUG == 'androidannotations/androidannotations' && $TRAVIS_BRANCH == 'develop' && $TRAVIS_PULL_REQUEST == 'false' && $TRAVIS_JDK_VERSION == 'oraclejdk7' ]]; then cd $TRAVIS_BUILD_DIR/AndroidAnnotations && ./mvnw -DskipTests -Dquiet -s settings.xml deploy ; fi

notifications:
webhooks:
Expand Down
Binary file added AndroidAnnotations/.mvn/wrapper/maven-wrapper.jar
Binary file not shown.
1 change: 1 addition & 0 deletions AndroidAnnotations/.mvn/wrapper/maven-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
distributionUrl=https://repo1.maven.org/maven2/org/apache/maven/apache-maven/3.3.9/apache-maven-3.3.9-bin.zip
236 changes: 236 additions & 0 deletions AndroidAnnotations/mvnw

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
X Tutup