Advertisement
Guest User

Untitled

a guest
Aug 20th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.37 KB | None | 0 0
  1. plugins {
  2.     id 'java'
  3.     id 'maven'
  4. }
  5.  
  6. group 'ru.nspk.mirage'
  7. version '1.0'
  8.  
  9. sourceCompatibility = 1.7
  10.  
  11. repositories {
  12.     mavenCentral()
  13. }
  14.  
  15. dependencies {
  16.     compile gradleApi()
  17.     compile 'com.sun.codemodel:codemodel:2.6'
  18. }
  19.  
  20. uploadArchives {
  21.     repositories {
  22.         mavenDeployer {
  23.             repository(url: mavenLocal().url)
  24.         }
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement