Skip to content

Commit

Permalink
Release 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jk1 committed Oct 23, 2019
1 parent ee8c867 commit bf65fcf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The plugin makes use of default artifact cache, downloading each dependency only
```groovy
// Gradle 5.3+
plugins {
id 'com.github.jk1.tcdeps' version '1.0'
id 'com.github.jk1.tcdeps' version '1.1'
}
// Gradle 4.5-5.2
Expand Down Expand Up @@ -158,16 +158,17 @@ import com.github.jk1.tcdeps.KotlinScriptDslAdapter.tc
plugins {
java
id("com.github.jk1.tcdeps") version "1.0"
id("com.github.jk1.tcdeps") version "1.1"
}
repositories {
teamcityServer {
setUrl("https://teamcity.jetbrains.com")
// credential section is optional
credentials {
username = "guest"
password = "guest"
username = "login"
password = "password"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins{

group = 'com.github.jk1'
description = 'TeamCity dependencies plugin resolves project dependencies via local TeamCity server'
version = '1.0'
version = '1.1'
sourceCompatibility = 1.8
targetCompatibility = 1.8

Expand Down
2 changes: 1 addition & 1 deletion samples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import com.github.jk1.tcdeps.KotlinScriptDslAdapter.tc

plugins {
id("java")
id("com.github.jk1.tcdeps") version "1.0"
id("com.github.jk1.tcdeps") version "1.1"
}

repositories {
Expand Down

0 comments on commit bf65fcf

Please sign in to comment.