Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gradle-example
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Leona
I
idea
plugin
gradle-example
Commits
408dc3d4
Commit
408dc3d4
authored
Oct 14, 2019
by
duanledexianxianxian
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sync
parent
3001fafe
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
63 additions
and
18 deletions
+63
-18
build.gradle
build.gradle
+5
-3
gradle/wrapper/gradle-wrapper.properties
gradle/wrapper/gradle-wrapper.properties
+6
-10
module1/build.gradle
module1/build.gradle
+0
-5
plugin-gradle/build.gradle
plugin-gradle/build.gradle
+27
-0
plugin-gradle/src/main/resources/META-INF/plugin.xml
plugin-gradle/src/main/resources/META-INF/plugin.xml
+24
-0
settings.gradle
settings.gradle
+1
-0
No files found.
build.gradle
View file @
408dc3d4
...
...
@@ -5,12 +5,14 @@ plugins {
group
'com.duanledexianxianxian'
version
'1.0-SNAPSHOT'
sourceCompatibility
=
1.8
repositories
{
mavenCentral
()
allprojects
{
sourceCompatibility
=
1.8
}
dependencies
{
testCompile
group:
'junit'
,
name:
'junit'
,
version:
'4.12'
compile
group:
'org.projectlombok'
,
name:
'lombok'
,
version:
'1.18.10'
compile
group:
'com.mchange'
,
name:
'c3p0'
,
version:
'0.9.5.4'
}
gradle/wrapper/gradle-wrapper.properties
View file @
408dc3d4
#Fri Oct 11 15:26:34 CST 2019
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
#distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip
# local
distributionUrl
=
file
\:
///D:/gradle-5.4.1-all.zip
# 其他连接
#Sun Oct 13 23:56:21 CST 2019
distributionBase
=
GRADLE_USER_HOME
distributionPath
=
wrapper/dists
zipStoreBase
=
GRADLE_USER_HOME
zipStorePath
=
wrapper/dists
distributionUrl
=
https
\:
//services.gradle.org/distributions/gradle-5.4.1-all.zip
module1/build.gradle
View file @
408dc3d4
...
...
@@ -5,11 +5,6 @@ plugins {
group
'com.duanledexianxianxian'
version
'1.0-SNAPSHOT'
sourceCompatibility
=
1.8
repositories
{
mavenCentral
()
}
dependencies
{
testCompile
group:
'junit'
,
name:
'junit'
,
version:
'4.12'
...
...
plugin-gradle/build.gradle
0 → 100644
View file @
408dc3d4
plugins
{
id
'java'
id
'org.jetbrains.intellij'
version
'0.4.10'
}
group
'com.duanledexianxianxian'
version
'1.0-SNAPSHOT'
sourceCompatibility
=
1.8
repositories
{
mavenCentral
()
}
dependencies
{
testCompile
group:
'junit'
,
name:
'junit'
,
version:
'4.12'
}
// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij
{
version
'2019.1'
}
patchPluginXml
{
changeNotes
"""
Add change notes here.<br>
<em>most HTML tags may be used</em>"""
}
\ No newline at end of file
plugin-gradle/src/main/resources/META-INF/plugin.xml
0 → 100644
View file @
408dc3d4
<idea-plugin>
<id>
com.duanledexianxianxian.plugin-gradle
</id>
<name>
Plugin display name here
</name>
<vendor
email=
"support@yourcompany.com"
url=
"http://www.yourcompany.com"
>
YourCompany
</vendor>
<description>
<![CDATA[
Enter short description for your plugin here.<br>
<em>
most HTML tags may be used
</em>
]]>
</description>
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
<!-- uncomment to enable plugin in all products
<depends>com.intellij.modules.lang</depends>
-->
<extensions
defaultExtensionNs=
"com.intellij"
>
<!-- Add your extensions here -->
</extensions>
<actions>
<!-- Add your actions here -->
</actions>
</idea-plugin>
\ No newline at end of file
settings.gradle
View file @
408dc3d4
rootProject
.
name
=
'gradle-example'
include
'module1'
include
'plugin-gradle'
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment