File: build.gradle

package info (click to toggle)
libjxmpp-java 1.0.1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 904 kB
  • sloc: java: 5,826; xml: 687; sh: 21; python: 11; makefile: 9
file content (24 lines) | stat: -rw-r--r-- 748 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
apply plugin: 'application'

description = """\
A testframework for XMPP addresses (JIDs) and other XMPP strings."""

mainClassName = 'org.jxmpp.strings.testframework.StringsTestframeworkMain'
applicationDefaultJvmArgs = ["-enableassertions"]

ext {
	picocliVersion = "4.0.2"
}

dependencies {
	compile project(':jxmpp-jid')
	compile project(':jxmpp-stringprep-icu4j')
	compile project(':jxmpp-stringprep-libidn')
	compile project(':jxmpp-stringprep-rocksxmppprecis')

	implementation 'org.parboiled:parboiled-java:1.3.1'
	implementation "info.picocli:picocli:${picocliVersion}"
	// Needed for org.apache.tools.ant.types.Commandline.translateCommandline(String)
	// See StringsTestframeworkMain.main()
	implementation 'org.apache.ant:ant:1.10.6'
}