Skip to content

Commit

Permalink
Add some manifest informations. see #49
Browse files Browse the repository at this point in the history
  • Loading branch information
Horcrux7 committed Feb 3, 2019
1 parent a022229 commit 2f303fe
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,18 @@ group = 'de.inetsoftware'
archivesBaseName = 'jlessc'
version = '1.7-SNAPSHOT'

jar {
manifest {
attributes( 'Implementation-Title': 'JLessC, a Less CSS compiler',
'Implementation-Vendor': 'i-net software',
'Implementation-Version': version,
'Automatic-Module-Name': 'de.inetsoftware.jlessc',
'Bundle-SymbolicName': 'de.inetsoftware.jlessc',
'Export-Package': 'com.inet.lib.less',
'Bundle-Version': version)
}
}

task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
Expand Down

0 comments on commit 2f303fe

Please sign in to comment.