Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/cflint/CFLint.git
Browse files Browse the repository at this point in the history
Conflicts:
	pom.xml

	Release 1.2.2
  • Loading branch information
ryaneberly committed Aug 10, 2017
2 parents 70523f0 + fd33665 commit 90bbdab
Show file tree
Hide file tree
Showing 155 changed files with 1,982 additions and 939 deletions.
7 changes: 7 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
root = true

[*]
charset = utf-8
insert_final_newline = false
indent_style = space
indent_size = 4
175 changes: 171 additions & 4 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Code of Conduct
===============

###TL;DR
### TL;DR
Don't be a dick!

### What we stand for
Expand Down
250 changes: 122 additions & 128 deletions README.md

Large diffs are not rendered by default.

36 changes: 17 additions & 19 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ buildscript {
jcenter {
url "http://jcenter.bintray.com/"
}
maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "http://oss.sonatype.org/content/repositories/snapshots/"
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'com.bmuschko:gradle-nexus-plugin:2.3'
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.5.3"
}
classpath "gradle.plugin.se.bjurr.gitchangelog:git-changelog-gradle-plugin:1.50"
}
}

plugins {
Expand All @@ -27,30 +30,22 @@ apply plugin: 'java'
apply plugin: 'maven'
apply from: 'cobertura.gradle'
apply from: 'deploy.gradle'
apply plugin: "se.bjurr.gitchangelog.git-changelog-gradle-plugin"


sourceCompatibility = 1.8
targetCompatibility = 1.8

repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
maven { url "http://repo.maven.apache.org/maven2" }
maven { url "https://oss.sonatype.org/content/repositories/releases" }
maven { url "http://cfmlprojects.org/artifacts" }
}
dependencies {
compile group: 'com.github.cfparser', name: 'cfparser', version:'2.4.9'
compile group: 'com.github.cfparser', name: 'cfml.parsing', version:'2.4.9'
compile group: 'com.github.cfparser', name: 'cfml.dictionary', version:'2.4.9'
compile group: 'junit', name: 'junit', version:'4.12'
compile group: 'org.jdom', name: 'jdom', version:'1.1.3'
compile group: 'org.antlr', name: 'antlr4-runtime', version:'4.7'
compile group: 'org.antlr', name: 'stringtemplate', version:'4.0.2'
compile group: 'org.antlr', name: 'antlr4', version:'4.6'
compile group: 'net.htmlparser.jericho', name: 'jericho-html', version:'3.4'
compile group: 'log4j', name: 'log4j', version:'1.2.17'
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version:'2.5'
compile group: 'com.github.cfparser', name: 'cfml.parsing', version:'2.5.0'
compile group: 'commons-cli', name: 'commons-cli', version:'1.2'
compile group: 'ro.fortsoft.pf4j', name: 'pf4j', version:'0.6'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version:'1.7.5'
compile group: 'ant', name: 'ant', version:'1.7.0'
compile group: 'com.sun.xml.bind', name: 'jaxb-impl', version:'2.1.8'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version:'2.8.6'
Expand All @@ -61,10 +56,8 @@ dependencies {
}
// https://mvnrepository.com/artifact/commons-io/commons-io
compile group: 'commons-io', name: 'commons-io', version: '2.5'

runtime group: 'commons-logging', name: 'commons-logging-api', version:'1.1'
runtime group: 'org.slf4j', name: 'slf4j-api', version:'1.7.5'
runtime group: 'org.javolution', name: 'javolution', version:'5.2.6'

testCompile group: 'junit', name: 'junit', version:'4.12'
}

test {
Expand All @@ -80,6 +73,7 @@ jar {
manifest {
attributes(
'Main-Class': 'com.cflint.main.CFLintMain',
'Implementation-Version': version,
)
}
}
Expand All @@ -99,4 +93,8 @@ task fatJar(type: Jar) {

artifacts {
archives fatJar
}
}
task gitChangelogTask(type: se.bjurr.gitchangelog.plugin.gradle.GitChangelogTask) {
file = new File("CHANGELOG.md");
templateContent = file('src/main/resources/changelog.mustache').getText('UTF-8');
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue, 06 Oct 2015 20:08:05 -0600
group=com.github.cflint
version=1.2.0
version=1.2.1-SNAPSHOT
name=CFLint
release=false
snapshot=false
34 changes: 18 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.cflint</groupId>
<artifactId>CFLint</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<packaging>jar</packaging>

<name>CFLint</name>
Expand Down Expand Up @@ -48,6 +48,11 @@
<name>cfmlprojects</name>
<url>http://cfmlprojects.org/artifacts</url>
</repository>
<repository>
<id>sonatype</id>
<name>sonatype</name>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</repository>
</repositories>

<licenses>
Expand All @@ -64,7 +69,7 @@
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>

<cfparser.version>2.4.10</cfparser.version>
<cfparser.version>2.5.0</cfparser.version>
<jackson.version>2.8.6</jackson.version>
<slf4j.version>1.7.21</slf4j.version>
</properties>
Expand Down Expand Up @@ -143,20 +148,6 @@

<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<phase>process-sources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${targetdirectory}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>appassembler-maven-plugin</artifactId>
Expand Down Expand Up @@ -197,6 +188,17 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.6</version>
Expand Down
Loading

0 comments on commit 90bbdab

Please sign in to comment.