• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1plugins {
2    id 'java-library'
3    id 'maven-publish'
4}
5
6publishing {
7    publications {
8        maven(MavenPublication) {
9            from components.java
10            groupId = 'com.google.android.enterprise.connectedapps'
11            artifactId = 'connectedapps-testing-annotations'
12            version = project.version
13
14            pom {
15                licenses {
16                    license {
17                        name = 'Apache 2.0'
18                        url = 'https://opensource.org/licenses/Apache-2.0'
19                    }
20                }
21            }
22        }
23    }
24}
25
26java {
27    sourceCompatibility = JavaVersion.VERSION_1_8
28    targetCompatibility = JavaVersion.VERSION_1_8
29}
30