| pom.xml | pom.xml | |||
|---|---|---|---|---|
| <?xml version="1.0" encoding="UTF-8"?> | <?xml version="1.0" encoding="UTF-8"?> | |||
| <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/P OM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | <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/P OM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |||
| <modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | |||
| <prerequisites> | <prerequisites> | |||
| <maven>3.0.0</maven> | <maven>3.0.1</maven> | |||
| </prerequisites> | </prerequisites> | |||
| <groupId>io.dropwizard.modules</groupId> | <groupId>io.dropwizard.modules</groupId> | |||
| <artifactId>dropwizard-discovery</artifactId> | <artifactId>dropwizard-discovery</artifactId> | |||
| <version>0.7.1-1</version> | <version>0.7.1-2</version> | |||
| <packaging>jar</packaging> | <packaging>jar</packaging> | |||
| <name>Dropwizard Discovery</name> | <name>Dropwizard Discovery</name> | |||
| <description>Service discovery for Dropwizard using Curator</descriptio n> | <description>Service discovery for Dropwizard using Curator</descriptio n> | |||
| <url>https://github.com/dropwizard/dropwizard-discovery</url> | <url>https://github.com/dropwizard/dropwizard-discovery</url> | |||
| <licenses> | <licenses> | |||
| <license> | <license> | |||
| <name>Apache 2.0</name> | <name>Apache 2.0</name> | |||
| <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> | |||
| <distribution>repo</distribution> | <distribution>repo</distribution> | |||
| </license> | </license> | |||
| </licenses> | </licenses> | |||
| <scm> | <scm> | |||
| <developerConnection>scm:git:git@github.com:dropwizard/dropwizard-d iscovery.git</developerConnection> | <developerConnection>scm:git:git@github.com:dropwizard/dropwizard-d iscovery.git</developerConnection> | |||
| <connection>scm:git:https://github.com/dropwizard/dropwizard-discov ery.git</connection> | <connection>scm:git:https://github.com/dropwizard/dropwizard-discov ery.git</connection> | |||
| <url>https://github.com/dropwizard/dropwizard-discovery</url> | <url>https://github.com/dropwizard/dropwizard-discovery</url> | |||
| <tag>v0.7.1-1</tag> | <tag>v0.7.1-2</tag> | |||
| </scm> | </scm> | |||
| <ciManagement> | <ciManagement> | |||
| <system>Travis CI</system> | <system>Travis CI</system> | |||
| <url>https://travis-ci.org/dropwizard/dropwizard-discovery</url> | <url>https://travis-ci.org/dropwizard/dropwizard-discovery</url> | |||
| </ciManagement> | </ciManagement> | |||
| <issueManagement> | <issueManagement> | |||
| <system>GitHub Issues</system> | <system>GitHub Issues</system> | |||
| <url>https://github.com/dropwizard/dropwizard-discovery/issues</url > | <url>https://github.com/dropwizard/dropwizard-discovery/issues</url > | |||
| skipping to change at line 78 | skipping to change at line 78 | |||
| <name>Nexus Release Repository</name> | <name>Nexus Release Repository</name> | |||
| <url>https://oss.sonatype.org/service/local/staging/deploy/mave n2/</url> | <url>https://oss.sonatype.org/service/local/staging/deploy/mave n2/</url> | |||
| </repository> | </repository> | |||
| </distributionManagement> | </distributionManagement> | |||
| <developers> | <developers> | |||
| <developer> | <developer> | |||
| <id>jplock</id> | <id>jplock</id> | |||
| <name>Justin Plock</name> | <name>Justin Plock</name> | |||
| <email>justin@plock.net</email> | <email>justin@plock.net</email> | |||
| <timezone>America/New_York</timezone> | ||||
| </developer> | </developer> | |||
| </developers> | </developers> | |||
| <properties> | <properties> | |||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |||
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEn coding> | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEn coding> | |||
| <dropwizard.version>0.7.1</dropwizard.version> | <dropwizard.version>0.7.1</dropwizard.version> | |||
| <curator.version>2.6.0</curator.version> | <curator.version>2.6.0</curator.version> | |||
| </properties> | </properties> | |||
| skipping to change at line 256 | skipping to change at line 257 | |||
| <groupId>org.apache.maven.plugins</groupId> | <groupId>org.apache.maven.plugins</groupId> | |||
| <artifactId>maven-site-plugin</artifactId> | <artifactId>maven-site-plugin</artifactId> | |||
| <version>3.4</version> | <version>3.4</version> | |||
| <configuration> | <configuration> | |||
| <skipDeploy>true</skipDeploy> | <skipDeploy>true</skipDeploy> | |||
| </configuration> | </configuration> | |||
| </plugin> | </plugin> | |||
| <plugin> | <plugin> | |||
| <groupId>com.github.github</groupId> | <groupId>com.github.github</groupId> | |||
| <artifactId>site-maven-plugin</artifactId> | <artifactId>site-maven-plugin</artifactId> | |||
| <version>0.9</version> | <version>0.10</version> | |||
| <configuration> | <configuration> | |||
| <path>${project.version}</path> | <path>${project.version}</path> | |||
| <message>Creating site for ${project.name} ${project.ve rsion}</message> | <message>Creating site for ${project.name} ${project.ve rsion}</message> | |||
| <merge>true</merge> | <merge>true</merge> | |||
| <noJekyll>true</noJekyll> | <noJekyll>true</noJekyll> | |||
| </configuration> | </configuration> | |||
| <executions> | <executions> | |||
| <execution> | <execution> | |||
| <goals> | <goals> | |||
| <goal>site</goal> | <goal>site</goal> | |||
| </goals> | </goals> | |||
| <phase>site-deploy</phase> | <phase>site-deploy</phase> | |||
| </execution> | </execution> | |||
| </executions> | </executions> | |||
| </plugin> | </plugin> | |||
| <plugin> | <plugin> | |||
| <groupId>org.codehaus.mojo</groupId> | <groupId>org.jacoco</groupId> | |||
| <artifactId>cobertura-maven-plugin</artifactId> | <artifactId>jacoco-maven-plugin</artifactId> | |||
| <version>2.6</version> | <version>0.7.1.201405082137</version> | |||
| <configuration> | <executions> | |||
| <formats> | <execution> | |||
| <format>xml</format> | <id>prepare-agent</id> | |||
| <format>html</format> | <goals> | |||
| </formats> | <goal>prepare-agent</goal> | |||
| <aggregate>true</aggregate> | </goals> | |||
| </configuration> | </execution> | |||
| </executions> | ||||
| </plugin> | </plugin> | |||
| <plugin> | <plugin> | |||
| <groupId>org.eluder.coveralls</groupId> | <groupId>org.eluder.coveralls</groupId> | |||
| <artifactId>coveralls-maven-plugin</artifactId> | <artifactId>coveralls-maven-plugin</artifactId> | |||
| <version>2.2.0</version> | <version>2.2.0</version> | |||
| </plugin> | </plugin> | |||
| <plugin> | <plugin> | |||
| <groupId>org.apache.maven.plugins</groupId> | <groupId>org.apache.maven.plugins</groupId> | |||
| <artifactId>maven-enforcer-plugin</artifactId> | <artifactId>maven-enforcer-plugin</artifactId> | |||
| <version>1.3.1</version> | <version>1.3.1</version> | |||
| End of changes. 6 change blocks. | ||||
| 14 lines changed or deleted | 16 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/  | ||||