@@ -15,8 +15,10 @@ build.dependsOn 'distZip'
1515
1616version = ' 0.71-SNAPSHOT'
1717group = ' de.bottlecaps.ebnf-convert'
18+
19+ def project_name = " $project . name "
1820def buildTime = new Date ()
19- def rrVersion = ' 2.3 '
21+ def rrVersion = ' 2.5 '
2022
2123def generatedSrc = " $buildDir /generated-src/main"
2224
@@ -48,10 +50,10 @@ dependencies {
4850 compileOnly ' org.apache.tomcat:tomcat-servlet-api:8.5.100'
4951 compileOnly " de.bottlecaps.rr:rr-lib:$rrVersion "
5052
51- implementation ' net.sf.saxon:Saxon-HE:12.5 '
52- implementation ' org.xmlresolver:xmlresolver:5.2.2 '
53+ implementation ' net.sf.saxon:Saxon-HE:12.7 '
54+ implementation ' org.xmlresolver:xmlresolver:5.3.3 '
5355 implementation ' commons-fileupload:commons-fileupload:1.5'
54- implementation ' commons-io:commons-io:2.18 .0'
56+ implementation ' commons-io:commons-io:2.19 .0'
5557}
5658
5759configurations. rrLib {
@@ -100,7 +102,7 @@ task generateSrc {
100102
101103public class ConvertVersion
102104{
103- public static final String PROJECT_NAME = " $p roject . name " ;
105+ public static final String PROJECT_NAME = " $p roject_name " ;
104106 public static final String VERSION = " $version " ;
105107 public static final String DATE = " ${ new java.text.SimpleDateFormat("MMM dd, yyyy", Locale.US).format(buildTime)} " ;
106108}
@@ -128,7 +130,7 @@ task generateLicense {
128130 def licenseTxt = new File (" $buildDir " , ' LICENSE.TXT' )
129131 licenseTxt. parentFile. exists() || licenseTxt. parentFile. mkdirs()
130132 licenseTxt. withWriter {
131- it << $/ ${project . name } - Grammar Converter
133+ it << $/ ${project_name } - Grammar Converter
132134
133135Copyright 2011 - $year Gunther Rademacher < grd@gmx.net>
134136
@@ -146,7 +148,7 @@ permissions and limitations under the License.
146148
147149For third- party license information see THIRD - PARTY - NOTICES . txt.
148150
149- Thank you for choosing ${project . name } - Grammar Converter .
151+ Thank you for choosing ${project_name } - Grammar Converter .
150152/ $
151153 }
152154 }
0 commit comments