Skip to content

Commit

Permalink
Merge pull request #29 from cfmleditor/ImplicitScopeChecker
Browse files Browse the repository at this point in the history
1.5.3-SNAPSHOT
  • Loading branch information
ghedwards authored Mar 13, 2024
2 parents c2b4994 + a9ff921 commit a4c08bd
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 26 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ If you want to use CFLint from within another Maven project, use:
```xml
<dependency>
<groupId>com.github.cflint</groupId>
<artifactId>CFLint</artifactId>
<artifactId>cflint</artifactId>
<version>1.4.1</version>
</dependency>
```
Expand All @@ -58,7 +58,7 @@ Or always use the latest:
```xml
<dependency>
<groupId>com.github.cflint</groupId>
<artifactId>CFLint</artifactId>
<artifactId>cflint</artifactId>
<version>LATEST</version>
</dependency>
```
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ jar {
attributes(
'Main-Class': 'com.cflint.cli.CFLintCLI',
'Implementation-Version': version,
'Bundle-Name': 'CFLint',
'Bundle-SymbolicName': 'com.cflint.CFLint',
'Bundle-Description': 'CFLint',
'Bundle-Name': 'cflint',
'Bundle-SymbolicName': 'io.cfmleditor.cflint',
'Bundle-Description': 'cflint',
'Bundle-ManifestVersion': 2,
'Bundle-Version': version
)
Expand Down
8 changes: 4 additions & 4 deletions 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.5.2-SNAPSHOT
name=CFLint
group=io.github.cfmleditor
version=1.5.3-SNAPSHOT
name=cflint
release=false
snapshot=false
snapshot=true
36 changes: 20 additions & 16 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.cflint</groupId>
<artifactId>CFLint</artifactId>
<groupId>io.github.cfmleditor</groupId>
<artifactId>cflint</artifactId>
<version>1.5.2</version>
<packaging>jar</packaging>

<name>CFLint</name>
<description>
A static code analysis tool for ColdFusion (in the spirit of FindBugs and Lint). With CFLint, you are able to analyze your ColdFusion code base for code violations.
</description>
<url>https://github.com/cflint/CFLint</url>
<name>cflint</name>
<description>A static code analysis tool for ColdFusion (in the spirit of FindBugs and Lint). With cflint, you are able to analyze your ColdFusion code base for code violations.</description>
<url>https://github.com/cfmleditor/cflint</url>
<inceptionYear>2013</inceptionYear>
<organization>
<name>CFLint</name>
<name>cflint</name>
</organization>

<developers>
Expand All @@ -34,12 +32,18 @@
<organization>cfparser</organization>
<organizationUrl>https://github.com/denuno</organizationUrl>
</developer>
<developer>
<name>Gareth Edwards</name>
<email>[email protected]</email>
<organization>cfmleditor</organization>
<organizationUrl>https://github.com/cfmleditor</organizationUrl>
</developer>
</developers>

<scm>
<connection>scm:git:[email protected]:cflint/CFLint.git</connection>
<developerConnection>scm:git:[email protected]:cflint/CFLint.git</developerConnection>
<url>[email protected]:cflint/CFLint.git</url>
<connection>scm:git:[email protected]:cfmleditor/cflint.git</connection>
<developerConnection>scm:git:[email protected]:cfmleditor/cflint.git</developerConnection>
<url>[email protected]:cfmleditor/cflint.git</url>
</scm>

<repositories>
Expand All @@ -56,7 +60,7 @@
</repositories>

<licenses>
<license>
<license>
<name>The New BSD License</name>
<url>https://opensource.org/licenses/bsd-license.html</url>
<distribution>repo</distribution>
Expand All @@ -70,7 +74,7 @@
<maven.compiler.target>1.8</maven.compiler.target>

<cfparser.version>2.11.0</cfparser.version>
<jackson.version>2.12.7.1</jackson.version>
<jackson.version>2.16.1</jackson.version>
<slf4j.version>1.7.21</slf4j.version>
</properties>

Expand Down Expand Up @@ -212,9 +216,9 @@
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
<manifestEntries>
<Bundle-Name>CFLint</Bundle-Name>
<Bundle-SymbolicName>com.cflint.CFLint</Bundle-SymbolicName>
<Bundle-Description>CFLint</Bundle-Description>
<Bundle-Name>cflint</Bundle-Name>
<Bundle-SymbolicName>com.cflint.cflint</Bundle-SymbolicName>
<Bundle-Description>cflint</Bundle-Description>
<Bundle-ManifestVersion>2</Bundle-ManifestVersion>
<Bundle-Version>${project.version}</Bundle-Version>
</manifestEntries>
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = 'CFLint'
rootProject.name = 'cflint'

0 comments on commit a4c08bd

Please sign in to comment.