-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove spurious annotation, add Maven plugins, metadata changes (#182)
Miscellaneous changes from our fork. I don't think any are critical, and some are more of a cleanup, but these changes would make future contributions easier. ## Change Summary - Changes to existing Eclipse metadata. - Add preference files generated by buildship and m2e. - Add logging file to existing Eclipse build properties. - Add PyDev metadata to existing Eclipse metadata. - Upgrade `maven-shade-plugin`. - Add `versions-maven-plugin`. - Remove spurious `@SuppressWarnings("unused")` annotation.
- Loading branch information
Showing
43 changed files
with
491 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
arguments= | ||
auto.sync=false | ||
build.scans.enabled=false | ||
connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER) | ||
connection.project.dir= | ||
eclipse.preferences.version=1 | ||
gradle.user.home= | ||
java.home= | ||
jvm.arguments= | ||
offline.mode=false | ||
override.workspace.settings=false | ||
show.console.view=false | ||
show.executions.view=false |
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,25 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType"> | ||
<intAttribute key="M2_COLORS" value="0"/> | ||
<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/> | ||
<stringAttribute key="M2_GOALS" value="spotless:apply"/> | ||
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/> | ||
<booleanAttribute key="M2_OFFLINE" value="true"/> | ||
<stringAttribute key="M2_PROFILES" value=""/> | ||
<listAttribute key="M2_PROPERTIES"/> | ||
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/> | ||
<booleanAttribute key="M2_SKIP_TESTS" value="true"/> | ||
<intAttribute key="M2_THREADS" value="1"/> | ||
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/> | ||
<stringAttribute key="M2_USER_SETTINGS" value=""/> | ||
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="true"/> | ||
<booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/> | ||
<stringAttribute key="org.eclipse.debug.core.ATTR_REFRESH_SCOPE" value="${workspace}"/> | ||
<listAttribute key="org.eclipse.debug.ui.favoriteGroups"> | ||
<listEntry value="org.eclipse.debug.ui.launchGroup.run"/> | ||
</listAttribute> | ||
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/> | ||
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/> | ||
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/> | ||
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${workspace_loc:/ml}"/> | ||
</launchConfiguration> |
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
13 changes: 13 additions & 0 deletions
13
com.ibm.wala.cast.python.jython.test/.settings/org.eclipse.jdt.core.prefs
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,11 +1,24 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.builder.cleanOutputFolder=clean | ||
org.eclipse.jdt.core.builder.duplicateResourceTask=warning | ||
org.eclipse.jdt.core.builder.invalidClasspath=abort | ||
org.eclipse.jdt.core.builder.recreateModifiedClassFileInOutputFolder=ignore | ||
org.eclipse.jdt.core.builder.resourceCopyExclusionFilter= | ||
org.eclipse.jdt.core.circularClasspath=error | ||
org.eclipse.jdt.core.classpath.exclusionPatterns=enabled | ||
org.eclipse.jdt.core.classpath.mainOnlyProjectHasTestOnlyDependency=error | ||
org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled | ||
org.eclipse.jdt.core.classpath.outputOverlappingAnotherSource=error | ||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 | ||
org.eclipse.jdt.core.compiler.compliance=1.8 | ||
org.eclipse.jdt.core.compiler.maxProblemPerUnit=100 | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | ||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning | ||
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore | ||
org.eclipse.jdt.core.compiler.release=disabled | ||
org.eclipse.jdt.core.compiler.source=1.8 | ||
org.eclipse.jdt.core.incompatibleJDKLevel=ignore | ||
org.eclipse.jdt.core.incompleteClasspath=error |
3 changes: 3 additions & 0 deletions
3
com.ibm.wala.cast.python.jython.test/.settings/org.eclipse.jdt.launching.prefs
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,3 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.launching.PREF_COMPILER_COMPLIANCE_DOES_NOT_MATCH_JRE=info | ||
org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=info |
35 changes: 35 additions & 0 deletions
35
com.ibm.wala.cast.python.jython.test/.settings/org.eclipse.pde.prefs
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,35 @@ | ||
compilers.f.unresolved-features=1 | ||
compilers.f.unresolved-plugins=1 | ||
compilers.incompatible-environment=1 | ||
compilers.p.build=1 | ||
compilers.p.build.bin.includes=1 | ||
compilers.p.build.encodings=2 | ||
compilers.p.build.java.compiler=2 | ||
compilers.p.build.java.compliance=1 | ||
compilers.p.build.missing.output=2 | ||
compilers.p.build.output.library=1 | ||
compilers.p.build.source.library=1 | ||
compilers.p.build.src.includes=1 | ||
compilers.p.deprecated=1 | ||
compilers.p.discouraged-class=1 | ||
compilers.p.exec-env-too-low=1 | ||
compilers.p.internal=1 | ||
compilers.p.missing-packages=1 | ||
compilers.p.missing-version-export-package=2 | ||
compilers.p.missing-version-import-package=2 | ||
compilers.p.missing-version-require-bundle=2 | ||
compilers.p.no-required-att=0 | ||
compilers.p.no.automatic.module=1 | ||
compilers.p.not-externalized-att=2 | ||
compilers.p.service.component.without.lazyactivation=1 | ||
compilers.p.unknown-attribute=1 | ||
compilers.p.unknown-class=1 | ||
compilers.p.unknown-element=1 | ||
compilers.p.unknown-identifier=1 | ||
compilers.p.unknown-resource=1 | ||
compilers.p.unresolved-ex-points=0 | ||
compilers.p.unresolved-import=1 | ||
compilers.s.create-docs=false | ||
compilers.s.doc-folder=doc | ||
compilers.s.open-tags=1 | ||
eclipse.preferences.version=1 |
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
3 changes: 3 additions & 0 deletions
3
com.ibm.wala.cast.python.jython/.settings/org.eclipse.jdt.launching.prefs
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,3 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.launching.PREF_COMPILER_COMPLIANCE_DOES_NOT_MATCH_JRE=info | ||
org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=info |
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
13 changes: 13 additions & 0 deletions
13
com.ibm.wala.cast.python.jython3.test/.settings/org.eclipse.jdt.core.prefs
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,11 +1,24 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.builder.cleanOutputFolder=clean | ||
org.eclipse.jdt.core.builder.duplicateResourceTask=warning | ||
org.eclipse.jdt.core.builder.invalidClasspath=abort | ||
org.eclipse.jdt.core.builder.recreateModifiedClassFileInOutputFolder=ignore | ||
org.eclipse.jdt.core.builder.resourceCopyExclusionFilter= | ||
org.eclipse.jdt.core.circularClasspath=error | ||
org.eclipse.jdt.core.classpath.exclusionPatterns=enabled | ||
org.eclipse.jdt.core.classpath.mainOnlyProjectHasTestOnlyDependency=error | ||
org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled | ||
org.eclipse.jdt.core.classpath.outputOverlappingAnotherSource=error | ||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 | ||
org.eclipse.jdt.core.compiler.compliance=1.8 | ||
org.eclipse.jdt.core.compiler.maxProblemPerUnit=100 | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | ||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning | ||
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore | ||
org.eclipse.jdt.core.compiler.release=disabled | ||
org.eclipse.jdt.core.compiler.source=1.8 | ||
org.eclipse.jdt.core.incompatibleJDKLevel=ignore | ||
org.eclipse.jdt.core.incompleteClasspath=error |
3 changes: 3 additions & 0 deletions
3
com.ibm.wala.cast.python.jython3.test/.settings/org.eclipse.jdt.launching.prefs
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,3 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.launching.PREF_COMPILER_COMPLIANCE_DOES_NOT_MATCH_JRE=info | ||
org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=info |
35 changes: 35 additions & 0 deletions
35
com.ibm.wala.cast.python.jython3.test/.settings/org.eclipse.pde.prefs
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,35 @@ | ||
compilers.f.unresolved-features=1 | ||
compilers.f.unresolved-plugins=1 | ||
compilers.incompatible-environment=1 | ||
compilers.p.build=1 | ||
compilers.p.build.bin.includes=1 | ||
compilers.p.build.encodings=2 | ||
compilers.p.build.java.compiler=2 | ||
compilers.p.build.java.compliance=1 | ||
compilers.p.build.missing.output=2 | ||
compilers.p.build.output.library=1 | ||
compilers.p.build.source.library=1 | ||
compilers.p.build.src.includes=1 | ||
compilers.p.deprecated=1 | ||
compilers.p.discouraged-class=1 | ||
compilers.p.exec-env-too-low=1 | ||
compilers.p.internal=1 | ||
compilers.p.missing-packages=1 | ||
compilers.p.missing-version-export-package=2 | ||
compilers.p.missing-version-import-package=2 | ||
compilers.p.missing-version-require-bundle=2 | ||
compilers.p.no-required-att=0 | ||
compilers.p.no.automatic.module=1 | ||
compilers.p.not-externalized-att=2 | ||
compilers.p.service.component.without.lazyactivation=1 | ||
compilers.p.unknown-attribute=1 | ||
compilers.p.unknown-class=1 | ||
compilers.p.unknown-element=1 | ||
compilers.p.unknown-identifier=1 | ||
compilers.p.unknown-resource=1 | ||
compilers.p.unresolved-ex-points=0 | ||
compilers.p.unresolved-import=1 | ||
compilers.s.create-docs=false | ||
compilers.s.doc-folder=doc | ||
compilers.s.open-tags=1 | ||
eclipse.preferences.version=1 |
13 changes: 13 additions & 0 deletions
13
com.ibm.wala.cast.python.jython3/.settings/org.eclipse.jdt.core.prefs
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,11 +1,24 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.builder.cleanOutputFolder=clean | ||
org.eclipse.jdt.core.builder.duplicateResourceTask=warning | ||
org.eclipse.jdt.core.builder.invalidClasspath=abort | ||
org.eclipse.jdt.core.builder.recreateModifiedClassFileInOutputFolder=ignore | ||
org.eclipse.jdt.core.builder.resourceCopyExclusionFilter= | ||
org.eclipse.jdt.core.circularClasspath=error | ||
org.eclipse.jdt.core.classpath.exclusionPatterns=enabled | ||
org.eclipse.jdt.core.classpath.mainOnlyProjectHasTestOnlyDependency=error | ||
org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled | ||
org.eclipse.jdt.core.classpath.outputOverlappingAnotherSource=error | ||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 | ||
org.eclipse.jdt.core.compiler.compliance=1.8 | ||
org.eclipse.jdt.core.compiler.maxProblemPerUnit=100 | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | ||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning | ||
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore | ||
org.eclipse.jdt.core.compiler.release=disabled | ||
org.eclipse.jdt.core.compiler.source=1.8 | ||
org.eclipse.jdt.core.incompatibleJDKLevel=ignore | ||
org.eclipse.jdt.core.incompleteClasspath=error |
3 changes: 3 additions & 0 deletions
3
com.ibm.wala.cast.python.jython3/.settings/org.eclipse.jdt.launching.prefs
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,3 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.launching.PREF_COMPILER_COMPLIANCE_DOES_NOT_MATCH_JRE=info | ||
org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=info |
35 changes: 35 additions & 0 deletions
35
com.ibm.wala.cast.python.jython3/.settings/org.eclipse.pde.prefs
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,35 @@ | ||
compilers.f.unresolved-features=1 | ||
compilers.f.unresolved-plugins=1 | ||
compilers.incompatible-environment=1 | ||
compilers.p.build=1 | ||
compilers.p.build.bin.includes=1 | ||
compilers.p.build.encodings=2 | ||
compilers.p.build.java.compiler=2 | ||
compilers.p.build.java.compliance=1 | ||
compilers.p.build.missing.output=2 | ||
compilers.p.build.output.library=1 | ||
compilers.p.build.source.library=1 | ||
compilers.p.build.src.includes=1 | ||
compilers.p.deprecated=1 | ||
compilers.p.discouraged-class=1 | ||
compilers.p.exec-env-too-low=1 | ||
compilers.p.internal=1 | ||
compilers.p.missing-packages=1 | ||
compilers.p.missing-version-export-package=2 | ||
compilers.p.missing-version-import-package=2 | ||
compilers.p.missing-version-require-bundle=2 | ||
compilers.p.no-required-att=0 | ||
compilers.p.no.automatic.module=1 | ||
compilers.p.not-externalized-att=2 | ||
compilers.p.service.component.without.lazyactivation=1 | ||
compilers.p.unknown-attribute=1 | ||
compilers.p.unknown-class=1 | ||
compilers.p.unknown-element=1 | ||
compilers.p.unknown-identifier=1 | ||
compilers.p.unknown-resource=1 | ||
compilers.p.unresolved-ex-points=0 | ||
compilers.p.unresolved-import=1 | ||
compilers.s.create-docs=false | ||
compilers.s.doc-folder=doc | ||
compilers.s.open-tags=1 | ||
eclipse.preferences.version=1 |
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
21 changes: 21 additions & 0 deletions
21
com.ibm.wala.cast.python.ml.test/.settings/org.eclipse.jdt.core.prefs
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,8 +1,29 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.builder.cleanOutputFolder=clean | ||
org.eclipse.jdt.core.builder.duplicateResourceTask=warning | ||
org.eclipse.jdt.core.builder.invalidClasspath=abort | ||
org.eclipse.jdt.core.builder.recreateModifiedClassFileInOutputFolder=ignore | ||
org.eclipse.jdt.core.builder.resourceCopyExclusionFilter= | ||
org.eclipse.jdt.core.circularClasspath=error | ||
org.eclipse.jdt.core.classpath.exclusionPatterns=enabled | ||
org.eclipse.jdt.core.classpath.mainOnlyProjectHasTestOnlyDependency=error | ||
org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled | ||
org.eclipse.jdt.core.classpath.outputOverlappingAnotherSource=error | ||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled | ||
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 | ||
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve | ||
org.eclipse.jdt.core.compiler.compliance=1.8 | ||
org.eclipse.jdt.core.compiler.debug.lineNumber=generate | ||
org.eclipse.jdt.core.compiler.debug.localVariable=generate | ||
org.eclipse.jdt.core.compiler.debug.sourceFile=generate | ||
org.eclipse.jdt.core.compiler.maxProblemPerUnit=100 | ||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled | ||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error | ||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning | ||
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore | ||
org.eclipse.jdt.core.compiler.release=disabled | ||
org.eclipse.jdt.core.compiler.source=1.8 | ||
org.eclipse.jdt.core.incompatibleJDKLevel=ignore | ||
org.eclipse.jdt.core.incompleteClasspath=error |
3 changes: 3 additions & 0 deletions
3
com.ibm.wala.cast.python.ml.test/.settings/org.eclipse.jdt.launching.prefs
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,3 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.launching.PREF_COMPILER_COMPLIANCE_DOES_NOT_MATCH_JRE=info | ||
org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=info |
Oops, something went wrong.