~ubuntu-branches/debian/stretch/insubstantial/stretch

« back to all changes in this revision

Viewing changes to laf-plugin/build.gradle

  • Committer: Package Import Robot
  • Author(s): Felix Natter
  • Date: 2016-01-18 20:58:45 UTC
  • Revision ID: package-import@ubuntu.com-20160118205845-crbmrkda61qsi5qa
Tags: upstream-7.3+dfsg2
ImportĀ upstreamĀ versionĀ 7.3+dfsg2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
jar {
 
2
  manifest {
 
3
    attributes(
 
4
        "Laf-Plugin-Version": version,
 
5
        "Laf-Plugin-VersionName": versionKey,
 
6
    )
 
7
  }
 
8
}
 
9
 
 
10
uploadPublished {
 
11
  repositories {
 
12
    mavenDeployer {
 
13
      configurePOM(pom)
 
14
    }
 
15
  }
 
16
}
 
17
 
 
18
install {
 
19
  configurePOM(repositories.mavenInstaller.pom)
 
20
}
 
21
 
 
22
private def configurePOM(def pom) {
 
23
  configureBasePom(pom)
 
24
  pom.project {
 
25
    name "laf-plugin"
 
26
    description "A fork of @kirilcool's laf-plugin project"
 
27
    url "http://insubstantial.github.com/insubstantial/laf-plugin/"
 
28
    licenses {
 
29
      license {
 
30
        name 'The BSD License'
 
31
        url 'http://www.opensource.org/licenses/bsd-license.php'
 
32
        distribution 'repo'
 
33
        comments 'Covers LafPlugin'
 
34
      }
 
35
      license {
 
36
        name 'The zlib/libpng License'
 
37
        url 'http://www.opensource.org/licenses/zlib-license'
 
38
        distribution 'repo'
 
39
        comments 'Covers the XMLElement and XMLParseException classes'
 
40
      }
 
41
    }
 
42
  }
 
43
}