Skip to content

Commit

Permalink
Merge pull request #14 from square/develop
Browse files Browse the repository at this point in the history
Consolidate versions and changelogs. Validate gradle wrapper.
  • Loading branch information
pablobaxter committed Aug 7, 2023
2 parents 8815bd7 + 5e4fb92 commit 1dfb915
Show file tree
Hide file tree
Showing 18 changed files with 27 additions and 98 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
## Unreleased

## v0.1.1
- `tooling-support`: Fix crash from `SquareProjectModelBuilder` when used on a non-Java/Android project
- `affected-paths-core`: Adds `autoInjectPlugin` flag to `CoreOptions`, which auto-injects the "com.squareup.tooling" plugin to the build

## v0.1.0
- Initial public release

## v0.0.3
- `tooling-support-core`: Close ServiceLoader stream once all extractors are found
- `tooling-support`: Close ServiceLoader stream once all extractors are found
- `affected-paths-core`: Allow for custom changed files to be analyzed

## v0.0.2
- `tooling-support-core`: Fix import statements
- `tooling-support`: Fix ServiceLoader not loading `SquareProjectExtractor` implementations
- `affected-paths-core`: Allow for SquareProject list to be provided to `CoreAnalyzer.analyze()`

## v0.0.1
- Initial Release
9 changes: 0 additions & 9 deletions affected-paths/app/CHANGELOG.md

This file was deleted.

18 changes: 0 additions & 18 deletions affected-paths/core/CHANGELOG.md

This file was deleted.

2 changes: 0 additions & 2 deletions affected-paths/core/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
VERSION_NAME=0.1.1

POM_ARTIFACT_ID=affected-paths-core
POM_NAME=Affected-Paths Core
POM_DESCRIPTION=Library containing core utilities used by affected-paths
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
kotlin.code.style=official

GROUP=com.squareup.affected.paths
VERSION_NAME=0.1.1

POM_URL=https://github.com/squareup/affected-paths
POM_SCM_URL=https://github.com/squareup/affected-paths
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
1 change: 1 addition & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
5 changes: 4 additions & 1 deletion gradlew
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,13 @@ location of your Java installation."
fi
else
JAVACMD=java
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
if ! command -v java >/dev/null 2>&1
then
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
fi

# Increase the maximum file descriptors if we can.
Expand Down
7 changes: 0 additions & 7 deletions tooling/models/CHANGELOG.md

This file was deleted.

2 changes: 0 additions & 2 deletions tooling/models/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
VERSION_NAME=0.1.0

POM_ARTIFACT_ID=tooling-models
POM_NAME=Affected-Paths Tooling Models
POM_DESCRIPTION=Tooling models used by affected-paths
18 changes: 0 additions & 18 deletions tooling/support/CHANGELOG.md

This file was deleted.

9 changes: 0 additions & 9 deletions tooling/support/android/CHANGELOG.md

This file was deleted.

2 changes: 0 additions & 2 deletions tooling/support/android/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
VERSION_NAME=0.1.0

POM_ARTIFACT_ID=tooling-support-android
POM_NAME=Affected-Paths Tooling Android Library
POM_DESCRIPTION=Library to provide Android extractors to the Affected-Paths Tooling plugin
15 changes: 0 additions & 15 deletions tooling/support/core/CHANGELOG.md

This file was deleted.

2 changes: 0 additions & 2 deletions tooling/support/core/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
VERSION_NAME=0.1.0

POM_ARTIFACT_ID=tooling-support-core
POM_NAME=Affected-Paths Tooling Core library
POM_DESCRIPTION=Core library to provide extractor interface to the Affected-Paths Tooling plugin
2 changes: 0 additions & 2 deletions tooling/support/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
VERSION_NAME=0.1.1

POM_ARTIFACT_ID=tooling-support
POM_NAME=Affected-Paths Tooling Plugin
POM_DESCRIPTION=Base library to provide affected-paths with Gradle models via the Gradle Tooling API
9 changes: 0 additions & 9 deletions tooling/support/jvm/CHANGELOG.md

This file was deleted.

2 changes: 0 additions & 2 deletions tooling/support/jvm/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
VERSION_NAME=0.1.0

POM_ARTIFACT_ID=tooling-support-jvm
POM_NAME=Affected-Paths Tooling Jvm Library
POM_DESCRIPTION=Library to provide Jvm extractors to the Affected-Paths Tooling plugin

0 comments on commit 1dfb915

Please sign in to comment.