This repository was archived by the owner on Feb 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert a part of "Update project configurations"
- Loading branch information
Showing
1 changed file
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
This is a Jenkins plugin which notifies to Typetalk ( https://typetalk.in/ ) | ||
|
||
#Build# | ||
The Jenkins plugin build is powered by the <a href="https://github.com/jenkinsci/gradle-jpi-plugin">gradle-jpi-plugin</a> (see its <a href="https://wiki.jenkins-ci.org/display/JENKINS/Gradle+JPI+Plugin">documentation</a>). | ||
# How to build | ||
- ref : https://wiki.jenkins-ci.org/display/JENKINS/Gradle+JPI+Plugin | ||
|
||
There are following targets defined: | ||
## Import to IDE | ||
|
||
Builds **.hpi** file | ||
``` | ||
gradle cleanEclipse eclipse | ||
gradle cleanIdea idea | ||
``` | ||
|
||
gradle jpi | ||
## Launch for development | ||
|
||
Run development server: | ||
``` | ||
gradle clean server | ||
``` | ||
|
||
gradle server | ||
## Package a plugin file | ||
|
||
###Debugging### | ||
``` | ||
gradle clean jpi | ||
``` | ||
|
||
Debuggins is configured with GRADLE_OPTIONS env variable. | ||
|
||
GRADLE_OPTS="${GRADLE_OPTS} -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5006" ./gradlew clean server | ||
If you don't install gradle, you can use gradlew / gradlew.bat instead of gradle. |