This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Button android:id="@+id/buttonA" ... /> | |
| <Button android:id="@+id/buttonB" ... | |
| app:layout_constraintLeft_toRightOf="@+id/buttonA" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'java' | |
| apply plugin: 'eclipse' | |
| sourceCompatibility = 1.5 | |
| version = '1.0' | |
| jar { | |
| manifest { | |
| attributes 'Implementation-Title': 'Gradle Quickstart', | |
| 'Implementation-Version': version | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tasks.create(name: 'hello') << { | |
| println "hello behindjava" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| task('hello') << { | |
| println "hello behindjava" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| task hello << { | |
| println 'hello behindjava' | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| task hello { | |
| doLast { | |
| println 'hello behindjava' | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repositories { | |
| maven { | |
| url "http://repo.mycompany.com/releases" | |
| mavenContent { | |
| releasesOnly() | |
| } | |
| } | |
| maven { | |
| url "http://repo.mycompany.com/snapshots" | |
| mavenContent { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repositories { | |
| maven { | |
| url "http://repo.mycompany.com/maven2" | |
| content { | |
| // this repository *only* contains artifacts with group "my.company" | |
| includeGroup "my.company" | |
| } | |
| } | |
| jcenter { | |
| content { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repositories { | |
| jcenter() | |
| maven { | |
| url "https://maven.springframework.org/release" | |
| } | |
| maven { | |
| url "https://maven.restlet.com" | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repositories { | |
| maven { | |
| url 'http://repo.mycompany.com/maven2' | |
| } | |
| } |