Last change
on this file since 1cc330b was
1cc330b,
checked in by str4d <str4d@…>, 21 months ago
|
Gradle: Generate attributes for JAR manifests
|
-
Property mode set to
100644
|
File size:
629 bytes
|
Line | |
---|
1 | plugins { |
---|
2 | id 'java-library' |
---|
3 | } |
---|
4 | |
---|
5 | sourceSets { |
---|
6 | main { |
---|
7 | java { |
---|
8 | srcDir 'java/src' |
---|
9 | } |
---|
10 | } |
---|
11 | test { |
---|
12 | java { |
---|
13 | srcDir 'java/test/junit' |
---|
14 | exclude { |
---|
15 | it.name.endsWith('IT.java') |
---|
16 | } |
---|
17 | } |
---|
18 | } |
---|
19 | } |
---|
20 | |
---|
21 | dependencies { |
---|
22 | api project(':core') |
---|
23 | api project(':apps:ministreaming') |
---|
24 | testImplementation project(path: ':apps:ministreaming', configuration: 'tests') |
---|
25 | } |
---|
26 | |
---|
27 | jar { |
---|
28 | manifest { |
---|
29 | attributes 'Specification-Title': 'I2P Streaming Implementation' |
---|
30 | attributes 'Implementation-Title': 'I2P Java Streaming Implementation' |
---|
31 | } |
---|
32 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.