Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
90 changes: 73 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,28 +1,84 @@
*.class
### Linux
*~
.directory
.Trash-*

*/target/**
target/**
### Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp
*.lnk

# TC integration
servers/*
### MacOS
.DS_Store
.AppleDouble
.LSOverride
Icon
._*
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

# IntelliJ files
.idea/*
### JetBrains
*.iml
*.ipr
*.iws
.idea/
/out/
.idea_modules/
atlassian-ide-plugin.xml

# Mobile Tools for Java (J2ME)
.mtj.tmp/
### Eclipse
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
.project
.externalToolBuilders/
*.launch
.classpath
.buildpath
.target
.texlipse

# Package Files #
### Java
*.class
.mtj.tmp/
*.jar
*.war
*.ear

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

.metadata
.project
.settings
.classpath
.gradle
### Maven
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
dependency-reduced-pom.xml
buildNumber.properties
.mvn/timing.properties


### TC integration
servers/
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
language: java
jdk:
- oraclejdk8
- openjdk8
- openjdk11
addons:
artifacts:
# ...
paths:
- $(ls target/*.zip | tr "\n" ":")
- $(ls tcslackbuildnotifier-web-ui/target/*.zip | tr "\n" ":")
bucket: slacknotifier-builds
key:
secure: Jgn0V3qiY/WX/Oo/9WOyi6V/g0oeaaP6fbZgs9nzMRCydOrUzJsh/ZCVX0Zc3jZBYARIuSbJJsNY5YBcdspGvM+tigpJsZaJ9po1cnHzDUIlciMpzu204APCMVF9Qp0aYzMnKoAUN/pMFP0BxclklpXHXtUZrAkaw7uerDzrnuQ=
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ In order to contribute to the project you first need to checkout the project sou

In order to test the plugin simply run the following command with java and mvn installed:

mvn package tc-sdk:start
mvn package
mvn -pl :tcslackbuildnotifier-plugin tc-sdk:start

By default it will install TeamCity in the version listed in the property in the root `pom.xml`. However you can overwrite this setting by using the `-DteamcityVersion=10.0` switch.

Expand Down
Loading