Skip to content

Commit 42971a1

Browse files
gaurabdgCalixte
authored andcommitted
Issue #256: New metadata maintanence method: Fetch directly from checkstyle
1 parent 527a848 commit 42971a1

File tree

15 files changed

+234
-98
lines changed

15 files changed

+234
-98
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ net.sf.eclipsecs.core/lib/metadata-gen-1.0-SNAPSHOT.jar
88
.checkstyle
99
target/
1010
show.patch
11+
*.DS_Store

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ matrix:
2727
- jdk: openjdk8
2828
env:
2929
- DESC="install (openjdk8)"
30-
- CMD="./build-metafile-gen.sh && mvn install && git diff"
30+
- CMD="mvn install && git diff"
3131

3232
# JDK 11 (Long Term Support version)
3333
- jdk: openjdk11
3434
env:
3535
- DESC="install (openjdk11)"
36-
- CMD="./build-metafile-gen.sh && mvn install && git diff"
36+
- CMD="mvn install && git diff"
3737

3838
# JDK 13 (most recent Java version)
3939
- jdk: openjdk13
4040
env:
4141
- DESC="install (openjdk13)"
42-
- CMD="./build-metafile-gen.sh && mvn install && git diff"
42+
- CMD="mvn install && git diff"
4343

4444
script:
4545
- |

build-metafile-gen.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

net.sf.eclipsecs.checkstyle/.classpath

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
3-
<classpathentry exported="true" kind="lib" path="checkstyle-8.35-all.jar" sourcepath="checkstyle-checkstyle-8.35.zip"/>
3+
<classpathentry exported="true" kind="lib" path="checkstyle-8.36.1-all.jar" sourcepath="checkstyle-checkstyle-8.36.zip"/>
44
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
55
<attributes>
66
<attribute name="maven.pomderived" value="true"/>

net.sf.eclipsecs.checkstyle/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ Export-Package: .,
4646
com.puppycrawl.tools.checkstyle.utils,
4747
org.apache.commons.beanutils;version="8.35.0"
4848
Bundle-ClassPath: .,
49-
checkstyle-8.35-all.jar
49+
checkstyle-8.36.1-all.jar
5050
Automatic-Module-Name: net.sf.eclipsecs.checkstyle
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
bin.includes = META-INF/,\
22
.,\
33
license/,\
4-
checkstyle-8.35-all.jar
4+
checkstyle-8.36.1-all.jar
55
jars.compile.order = .
66
source.. = metadata/

net.sf.eclipsecs.checkstyle/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<name>Checkstyle Core Library Plugin</name>
1212

1313
<properties>
14-
<checkstyle.version>8.35</checkstyle.version>
14+
<checkstyle.version>8.36.1</checkstyle.version>
1515
</properties>
1616
<build>
1717
<plugins>

net.sf.eclipsecs.checkstyle/test/net/sf/eclipsecs/checkstyle/ChecksTest.java

Lines changed: 188 additions & 5 deletions
Large diffs are not rendered by default.

net.sf.eclipsecs.core/.classpath

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<classpath>
33
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
4-
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
4+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5+
<accessrules>
6+
<accessrule kind="accessible" pattern="com/puppycrawl/tools/checkstyle/meta/**"/>
7+
</accessrules>
8+
</classpathentry>
59
<classpathentry kind="src" path="src"/>
610
<classpathentry exported="true" kind="lib" path="lib/dom4j-2.1.3.jar"/>
7-
<classpathentry exported="true" kind="lib" path="lib/metadata-gen-1.0-SNAPSHOT.jar"/>
8-
<classpathentry exported="true" kind="lib" path="lib/reflections-0.9.10.jar"/>
911
<classpathentry exported="true" kind="lib" path="lib/snakeyaml-1.26.jar"/>
12+
<classpathentry exported="true" kind="lib" path="lib/reflections-0.9.10.jar"/>
13+
<classpathentry kind="lib" path="lib/checkstyle-8.36.1-all.jar"/>
1014
<classpathentry kind="output" path="target/classes"/>
1115
</classpath>

0 commit comments

Comments
 (0)