apply plugin: 'java' apply plugin: 'eclipse' jar { manifest { attributes 'Implementation-Title': 'PDF-AS-4 WEB CLIENT', 'JARMANIFEST': 'PDF-AS-WEB-CLIENT' } } repositories { mavenCentral() } dependencies { implementation 'org.apache.commons:commons-collections4:4.4' implementation group: 'javax.xml.ws', name: 'jaxws-api', version: '2.3.1' implementation project (':pdf-as-common') } test { systemProperties 'property': 'value' }