summaryrefslogtreecommitdiffstats
path: root/org.eclipse.viatra.coding/build.gradle
blob: 0fb0c55548fa675ae0ba2baed08ff02c56d4ebbb (plain) (blame)
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
plugins {
    id "java"
    id 'maven-publish'
}


group 'org.eclipse.viatra'
version '0.0.1'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'

repositories {
    mavenCentral()
}

test {
    minHeapSize = "2048m"
    maxHeapSize = "4096m"
}

publishing {
    publications {
        mavenJava(MavenPublication) {
            groupId = 'org.eclipse.viatra'
            artifactId = 'org.eclipse.viatra.coding'
            version = '0.0.1'
            from components.java
        }
    }
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
}