Skip to content

Commit

Permalink
Copied a stubbed out example pom.xml and settings.xml file into the
Browse files Browse the repository at this point in the history
project.
  • Loading branch information
smoyer64 committed Nov 20, 2012
1 parent 75d0401 commit 5ce7f07
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/test/resources/unit/common/credentials-provided-pom.xml
@@ -0,0 +1,22 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>testing</groupId>
<artifactId>testing</artifactId>
<version>0.1.0-SNAPSHOT</version>

<build>
<plugins>
<plugin>
<groupId>org.jboss.</groupId>
<artifactId>couchdb-maven-plugin</artifactId>
<version>0.1.0-SNAPSHOT</version>
<configuration>
<id>localhost</id>
<url>http://192.168.87.159:5984/couchdb-maven-plugin-test/credentials-provided</url>
</configuration>
</plugin>
</plugins>
</build>

</project>
14 changes: 14 additions & 0 deletions src/test/resources/unit/common/credentials-provided-settings.xml
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

<servers>
<server>
<id>localhost</id>
<username>test.admin</username>
<password>test</password>
</server>
</servers>

</settings>

0 comments on commit 5ce7f07

Please sign in to comment.