-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
53 lines (45 loc) · 1.04 KB
/
build.gradle
File metadata and controls
53 lines (45 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
buildscript {
repositories {
maven { url = 'https://plugins.gradle.org/m2/' }
maven { url = 'https://mvn.topobyte.de' }
}
dependencies {
classpath 'de.topobyte:gradle-generate-favicons-plugin:0.0.3'
classpath 'de.topobyte:gradle-cache-busting-plugin:0.0.5'
}
}
wrapper {
gradleVersion = '8.12'
}
allprojects {
group = pGroup
version = pVersion
}
subprojects {
apply plugin: 'maven-publish'
repositories {
maven {
url = 'https://mvn.topobyte.de'
}
maven {
url = 'https://mvn.slimjars.com'
}
mavenCentral()
}
}
project(':jetty-utils') {
apply plugin: 'java-library'
apply plugin: 'eclipse-wtp'
}
project(':jetty-utils-test') {
apply plugin: 'war'
apply plugin: 'eclipse-wtp'
apply plugin: 'de.topobyte.generate-favicons-gradle-plugin'
apply plugin: 'de.topobyte.cache-busting-gradle-plugin'
}
subprojects {
java {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}