mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
Updated code snippets in Gradle tutorial
This commit is contained in:
parent
d452237c40
commit
34e74f0676
@ -1,31 +1,16 @@
|
||||
buildscript {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
repositories {
|
||||
maven {
|
||||
url "https://plugins.gradle.org/m2/"
|
||||
}
|
||||
maven {
|
||||
url 'http://dl.bintray.com/jetbrains/intellij-plugin-service'
|
||||
}
|
||||
|
||||
}
|
||||
dependencies {
|
||||
classpath "gradle.plugin.org.jetbrains:gradle-intellij-plugin:0.1.10"
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id "org.jetbrains.intellij" version "0.0.20"
|
||||
}
|
||||
|
||||
apply plugin: 'idea'
|
||||
apply plugin: 'org.jetbrains.intellij'
|
||||
apply plugin: 'java'
|
||||
|
||||
compileJava {
|
||||
sourceCompatibility = 1.8
|
||||
targetCompatibility = 1.8
|
||||
}
|
||||
|
||||
intellij {
|
||||
version '15.0.1'
|
||||
plugins 'coverage'
|
||||
pluginName 'gradle_plugin_demo'
|
||||
}
|
||||
|
||||
group 'org.jetbrains'
|
||||
version '0.0.1-SNAPSHOT'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
apply plugin: 'org.jetbrains.intellij'
|
@ -1,6 +1,6 @@
|
||||
<idea-plugin>
|
||||
<id>org.jetbrains</id>
|
||||
<name>gradle_plugin_demo</name>
|
||||
<name>my_plugin</name>
|
||||
<version>0.0.1</version>
|
||||
<vendor email="dummy" url="dummy">dummy</vendor>
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
</change-notes>
|
||||
|
||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
|
||||
<idea-version since-build="131"/>
|
||||
<idea-version since-build="162"/>
|
||||
|
||||
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
|
||||
on how to target different products -->
|
||||
|
Loading…
x
Reference in New Issue
Block a user