Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
general
stups
SableCC STUPS
Commits
65ff4981
Commit
65ff4981
authored
Mar 06, 2019
by
dgelessus
Browse files
Add .editorconfig and indent build.gradle consistently
parent
64011d95
Changes
2
Hide whitespace changes
Inline
Side-by-side
.editorconfig
0 → 100644
View file @
65ff4981
root = true
[*]
indent_style = space
indent_size = 2
charset = utf-8
insert_final_newline = true
build.gradle
View file @
65ff4981
...
...
@@ -8,55 +8,55 @@ project.group = 'de.hhu.stups'
project
.
archivesBaseName
=
"sablecc"
wrapper
{
gradleVersion
=
"5.2.1"
distributionType
=
Wrapper
.
DistributionType
.
ALL
gradleVersion
=
"5.2.1"
distributionType
=
Wrapper
.
DistributionType
.
ALL
}
allprojects
{
sourceCompatibility
=
1.6
targetCompatibility
=
1.6
sourceCompatibility
=
1.6
targetCompatibility
=
1.6
}
dependencies
{
testCompile
'junit:junit:4.8.2'
testCompile
'junit:junit:4.8.2'
}
task
javadocJar
(
type:
Jar
)
{
classifier
=
'javadoc'
from
javadoc
classifier
=
'javadoc'
from
javadoc
}
task
sourcesJar
(
type:
Jar
)
{
classifier
=
'sources'
from
sourceSets
.
main
.
allSource
classifier
=
'sources'
from
sourceSets
.
main
.
allSource
}
jar
{
manifest
{
attributes
'Main-Class'
:
'org.sablecc.sablecc.SableCC'
}
manifest
{
attributes
'Main-Class'
:
'org.sablecc.sablecc.SableCC'
}
}
artifacts
{
archives
javadocJar
,
sourcesJar
archives
javadocJar
,
sourcesJar
}
task
writeVersion
()
{
doFirst
{
def
buildconstants_class
=
"""
package org.sablecc.sablecc;
def
buildconstants_class
=
"""
package org.sablecc.sablecc;
public class Version
{
public static final String VERSION = "${project.version}";
public class Version
{
public static final String VERSION = "${project.version}";
}
"""
File
f
=
file
(
"src/main/java/org/sablecc/sablecc/Version.java"
)
f
.
delete
()
f
<<
buildconstants_class
}
"""
File
f
=
file
(
"src/main/java/org/sablecc/sablecc/Version.java"
)
f
.
delete
()
f
<<
buildconstants_class
}
}
compileJava
{
...
...
@@ -67,54 +67,54 @@ task deploy(dependsOn: [jar,test,javadoc], group: 'Build')
if
(
project
.
hasProperty
(
'ossrhUsername'
)
&&
project
.
hasProperty
(
'ossrhPassword'
))
{
apply
plugin:
'signing'
apply
plugin:
'signing'
signing
{
signing
{
sign
configurations
.
archives
}
uploadArchives
{
repositories
{
mavenDeployer
{
beforeDeployment
{
MavenDeployment
deployment
->
signing
.
signPom
(
deployment
)
}
repository
(
url:
"https://oss.sonatype.org/service/local/staging/deploy/maven2/"
)
{
authentication
(
userName:
ossrhUsername
,
password:
ossrhPassword
)
}
}
uploadArchives
{
repositories
{
mavenDeployer
{
beforeDeployment
{
MavenDeployment
deployment
->
signing
.
signPom
(
deployment
)
}
snapshotR
epository
(
url:
"https://oss.sonatype.org/
content/repositories/snapshots
/"
)
{
authentication
(
userName:
ossrhUsername
,
password:
ossrhPassword
)
}
r
epository
(
url:
"https://oss.sonatype.org/
service/local/staging/deploy/maven2
/"
)
{
authentication
(
userName:
ossrhUsername
,
password:
ossrhPassword
)
}
pom
.
project
{
name
'SableCC - Stups fork'
packaging
'jar'
// optionally artifactId can be defined here
description
'This version of SableCC enriches the abstract syntax tree with information about tokens.'
url
'https://github.com/bendisposto/sablecc-stups'
licenses
{
license
{
name
'GNU Lesser General Public License, Version 2.1'
url
'http://www.gnu.org/licenses/lgpl-2.1.html'
}
snapshotRepository
(
url:
"https://oss.sonatype.org/content/repositories/snapshots/"
)
{
authentication
(
userName:
ossrhUsername
,
password:
ossrhPassword
)
}
scm
{
connection
'scm:git:git://github.com/bendisposto/sablecc-stups.git'
developerConnection
'scm:git:git@github.com:bendisposto/sablecc-stups.git'
pom
.
project
{
name
'SableCC - Stups fork'
packaging
'jar'
// optionally artifactId can be defined here
description
'This version of SableCC enriches the abstract syntax tree with information about tokens.'
url
'https://github.com/bendisposto/sablecc-stups'
}
licenses
{
license
{
name
'GNU Lesser General Public License, Version 2.1'
url
'http://www.gnu.org/licenses/lgpl-2.1.html'
}
}
developers
{
developer
{
id
'bendisposto'
name
'Jens Bendisposto'
email
'jens@bendisposto.de'
scm
{
connection
'scm:git:git://github.com/bendisposto/sablecc-stups.git'
developerConnection
'scm:git:git@github.com:bendisposto/sablecc-stups.git'
url
'https://github.com/bendisposto/sablecc-stups'
}
developers
{
developer
{
id
'bendisposto'
name
'Jens Bendisposto'
email
'jens@bendisposto.de'
}
}
}
}
}
}
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment