Navigation Menu

Skip to content

Commit

Permalink
Fixed JENKINS-810. Support for multiple VSS paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonblack committed Jun 27, 2011
1 parent 1d5c7be commit 71bc246
Show file tree
Hide file tree
Showing 4 changed files with 325 additions and 206 deletions.
40 changes: 40 additions & 0 deletions .gitignore
@@ -0,0 +1,40 @@
# Project specific #
####################
target
work

# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.bak

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store?
ehthumbs.db
Icon?
Thumbs.db
10 changes: 5 additions & 5 deletions pom.xml
@@ -1,17 +1,17 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.jvnet.hudson.plugins</groupId>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>1.318</version>
<relativePath>../pom.xml</relativePath>
<version>1.417</version>
</parent>

<artifactId>vss</artifactId>
<packaging>hpi</packaging>
<name>Hudson Visual SourceSafe Plug-in</name>
<name>Visual SourceSafe Plug-in</name>
<version>1.9-SNAPSHOT</version>
<url>http://wiki.hudson-ci.org/display/HUDSON/Visual+SourceSafe+Plugin</url>
<url>https://wiki.jenkins-ci.org/display/JENKINS/Visual+SourceSafe+Plugin</url>
<licenses>
<license><name>MIT license</name><comments>All source code is under the MIT license.</comments></license>
</licenses>
Expand Down

0 comments on commit 71bc246

Please sign in to comment.