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/maven-v4_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/maven-v4_0_0.xsd"> | |||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | |||
<parent> | <parent> | |||
<groupId>org.quartz-scheduler</groupId> | <groupId>org.quartz-scheduler</groupId> | |||
<artifactId>quartz-parent</artifactId> | <artifactId>quartz-parent</artifactId> | |||
<version>1.8.6</version> | <version>2.0.2</version> | |||
</parent> | </parent> | |||
<artifactId>quartz</artifactId> | <artifactId>quartz</artifactId> | |||
<name>Quartz Enterprise Job Scheduler</name> | <name>Quartz Enterprise Job Scheduler</name> | |||
<dependencies> | <dependencies> | |||
<dependency> | <dependency> | |||
<groupId>javax.activation</groupId> | ||||
<artifactId>activation</artifactId> | ||||
<version>1.1</version> | ||||
<scope>provided</scope> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>javax.mail</groupId> | ||||
<artifactId>mail</artifactId> | ||||
<version>1.4.1</version> | ||||
<scope>provided</scope> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>javax.transaction</groupId> | ||||
<artifactId>jta</artifactId> | ||||
<version>1.1</version> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>javax.jms</groupId> | ||||
<artifactId>jms</artifactId> | ||||
<version>1.1</version> | ||||
<scope>provided</scope> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>javax.servlet</groupId> | ||||
<artifactId>servlet-api</artifactId> | ||||
<version>2.5</version> | ||||
<scope>provided</scope> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>org.apache.openejb</groupId> | <groupId>org.apache.openejb</groupId> | |||
<artifactId>javaee-api</artifactId> | <artifactId>javaee-api</artifactId> | |||
<version>5.0-2</version> | <version>5.0-2</version> | |||
<scope>provided</scope> | <scope>provided</scope> | |||
</dependency> | </dependency> | |||
<dependency> | ||||
<groupId>c3p0</groupId> | ||||
<artifactId>c3p0</artifactId> | ||||
<version>0.9.1.1</version> | ||||
</dependency> | ||||
<dependency> | <dependency> | |||
<groupId>org.slf4j</groupId> | <groupId>org.slf4j</groupId> | |||
<artifactId>slf4j-api</artifactId> | <artifactId>slf4j-api</artifactId> | |||
<version>1.6.0</version> | <version>1.6.1</version> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>org.slf4j</groupId> | <groupId>org.slf4j</groupId> | |||
<artifactId>slf4j-log4j12</artifactId> | <artifactId>slf4j-log4j12</artifactId> | |||
<version>1.6.0</version> | <version>1.6.1</version> | |||
<scope>runtime</scope> | <scope>runtime</scope> | |||
<optional>true</optional> | <optional>true</optional> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>commons-dbcp</groupId> | ||||
<artifactId>commons-dbcp</artifactId> | ||||
<version>1.3</version> | ||||
<optional>true</optional> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>commons-pool</groupId> | ||||
<artifactId>commons-pool</artifactId> | ||||
<version>1.5.4</version> | ||||
<scope>runtime</scope> | ||||
<optional>true</optional> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>log4j</groupId> | <groupId>log4j</groupId> | |||
<artifactId>log4j</artifactId> | <artifactId>log4j</artifactId> | |||
<version>1.2.14</version> | <version>1.2.14</version> | |||
<scope>runtime</scope> | <scope>runtime</scope> | |||
<optional>true</optional> | <optional>true</optional> | |||
</dependency> | </dependency> | |||
<!-- test dependencies --> | <!-- test dependencies --> | |||
<dependency> | <dependency> | |||
<groupId>org.hamcrest</groupId> | ||||
<artifactId>hamcrest-library</artifactId> | ||||
<version>1.2</version> | ||||
<scope>test</scope> | ||||
</dependency> | ||||
<dependency> | ||||
<groupId>junit</groupId> | <groupId>junit</groupId> | |||
<artifactId>junit</artifactId> | <artifactId>junit</artifactId> | |||
<version>3.8.2</version> | <version>3.8.2</version> | |||
<scope>test</scope> | <scope>test</scope> | |||
</dependency> | </dependency> | |||
<dependency> | <dependency> | |||
<groupId>asm</groupId> | <groupId>asm</groupId> | |||
<artifactId>asm</artifactId> | <artifactId>asm</artifactId> | |||
<version>3.2</version> | <version>3.2</version> | |||
<scope>test</scope> | <scope>test</scope> | |||
skipping to change at line 104 | skipping to change at line 121 | |||
<goal>rmic</goal> | <goal>rmic</goal> | |||
</goals> | </goals> | |||
<configuration> | <configuration> | |||
<outputDirectory>${project.build.outputDirectory}</outputDire ctory> | <outputDirectory>${project.build.outputDirectory}</outputDire ctory> | |||
</configuration> | </configuration> | |||
</execution> | </execution> | |||
</executions> | </executions> | |||
</plugin> | </plugin> | |||
<plugin> | <plugin> | |||
<artifactId>maven-surefire-plugin</artifactId> | <artifactId>maven-surefire-plugin</artifactId> | |||
<configuration> | <configuration> | |||
<forkMode>always</forkMode> | <systemProperties> | |||
<systemProperties> | <property> | |||
<property> | <!-- skip update check in tests --> | |||
<!-- skip update check in tests --> | <name>org.quartz.scheduler.skipUpdateCheck</name> | |||
<name>org.quartz.scheduler.skipUpdateCheck</name> | <value>true</value> | |||
<value>true</value> | </property> | |||
</property> | </systemProperties> | |||
</systemProperties> | </configuration> | |||
</configuration> | </plugin> | |||
</plugin> | ||||
</plugins> | </plugins> | |||
<pluginManagement> | ||||
<plugins> | ||||
<!--This plugin's configuration is used to store Eclipse m2e | ||||
settings only. It has no influence on the Maven build itself.--> | ||||
<plugin> | ||||
<groupId>org.eclipse.m2e</groupId> | ||||
<artifactId>lifecycle-mapping</artifactId> | ||||
<version>1.0.0</version> | ||||
<configuration> | ||||
<lifecycleMappingMetadata> | ||||
<pluginExecutions> | ||||
<pluginExecution> | ||||
<pluginExecutionFilt | ||||
er> | ||||
<groupId>org | ||||
.codehaus.mojo</groupId> | ||||
<artifactId> | ||||
rmic | ||||
-maven-plugin | ||||
</artifactId | ||||
> | ||||
<versionRang | ||||
e>[1.0,)</versionRange> | ||||
<goals> | ||||
<goa | ||||
l>rmic</goal> | ||||
</goals> | ||||
</pluginExecutionFil | ||||
ter> | ||||
<action> | ||||
<ignore></ig | ||||
nore> | ||||
</action> | ||||
</pluginExecution> | ||||
</pluginExecutions> | ||||
</lifecycleMappingMetadata> | ||||
</configuration> | ||||
</plugin> | ||||
</plugins> | ||||
</pluginManagement> | ||||
</build> | </build> | |||
</project> | </project> | |||
End of changes. 9 change blocks. | ||||
74 lines changed or deleted | 51 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/ |