This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/master by this push: new 65f3720 Clean extracted camel-validator component POM 65f3720 is described below commit 65f3720c1a59d815f93dd268a126af0bf621fab0 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Jan 24 15:53:52 2019 +0100 Clean extracted camel-validator component POM --- components/camel-validator/pom.xml | 294 ------------------------------------- 1 file changed, 294 deletions(-) diff --git a/components/camel-validator/pom.xml b/components/camel-validator/pom.xml index 6997a79..53f8122 100644 --- a/components/camel-validator/pom.xml +++ b/components/camel-validator/pom.xml @@ -33,306 +33,12 @@ <name>Camel :: Validator</name> <description>Camel Validator component</description> - <properties> - <!-- do not skip any tests by default --> - <platform.skip.tests/> - </properties> - <dependencies> - <!-- required dependencies by camel-core --> - <!-- it will be shade into camel-core by bnd plugin --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>spi-annotations</artifactId> - <version>${project.version}</version> - <optional>true</optional> - </dependency> - - <!-- required dependencies by camel-core --> - <!-- it will be shade into camel-core by bnd plugin --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>meta-annotations</artifactId> - <version>${project.version}</version> - <optional>true</optional> - </dependency> - - <!-- required dependencies by camel-core --> - <!-- it will be shade into camel-core by bnd plugin --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-util</artifactId> - <version>${project.version}</version> - </dependency> - - <!-- required dependencies by camel-core --> - <!-- it will be shade into camel-core by bnd plugin --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-api</artifactId> - <version>${project.version}</version> - </dependency> - - <!-- required dependencies by camel-core --> - <!-- it will be shade into camel-core by bnd plugin --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-management-api</artifactId> - <version>${project.version}</version> - </dependency> - - <!-- required dependencies by camel-core --> - <!-- it will be shade into camel-core by bnd plugin --> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-support</artifactId> - <version>${project.version}</version> - </dependency> - - <!-- required dependencies by camel-core --> - <!-- which we shade into camel-core so its available for everybody out of the box --> - <dependency> - <groupId>com.github.ben-manes.caffeine</groupId> - <artifactId>caffeine</artifactId> - </dependency> - <!-- we shade our patched ordered json-simple parser --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>json-simple-ordered</artifactId> - <version>${project.version}</version> - </dependency> - - <!-- required dependencies by camel-core --> - <dependency> - <groupId>org.slf4j</groupId> - <artifactId>slf4j-api</artifactId> - </dependency> - - <!-- osgi support --> - <dependency> - <groupId>org.osgi</groupId> - <artifactId>org.osgi.core</artifactId> - <scope>provided</scope> - <optional>true</optional> - </dependency> - - <!-- testing --> - <dependency> - <groupId>org.codehaus.woodstox</groupId> - <artifactId>woodstox-core-asl</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - <exclusions> - <exclusion> - <artifactId>hamcrest-core</artifactId> - <groupId>org.hamcrest</groupId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.openjdk.jmh</groupId> - <artifactId>jmh-core</artifactId> - <version>1.21</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.openjdk.jmh</groupId> - <artifactId>jmh-generator-annprocess</artifactId> - <version>1.21</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>java-hamcrest</artifactId> - <version>${hamcrest-version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.awaitility</groupId> - <artifactId>awaitility</artifactId> - <scope>test</scope> - <exclusions> - <exclusion> - <artifactId>hamcrest-core</artifactId> - <groupId>org.hamcrest</groupId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.assertj</groupId> - <artifactId>assertj-core</artifactId> - <version>${assertj-version}</version> - <scope>test</scope> - </dependency> - - <!-- logging --> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-api</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-core</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.logging.log4j</groupId> - <artifactId>log4j-slf4j-impl</artifactId> - <scope>test</scope> - </dependency> - - <dependency> - <groupId>org.mockito</groupId> - <artifactId>mockito-core</artifactId> - <scope>test</scope> - </dependency> - - <!-- for json tests --> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-databind</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-core</artifactId> - <scope>test</scope> - </dependency> - - <!-- validator --> - <dependency> - <groupId>xml-resolver</groupId> - <artifactId>xml-resolver</artifactId> - <version>${xml-resolver-version}</version> - <scope>test</scope> </dependency> </dependencies> - - - <build> - - <plugins> - - <plugin> - <groupId>org.apache.camel</groupId> - <artifactId>camel-package-maven-plugin</artifactId> - <version>${project.version}</version> - <configuration> - <!-- set to true to make build fail fast if missing documentation in docs files --> - <failFast>false</failFast> - </configuration> - <executions> - <execution> - <id>generate</id> - <goals> - <goal>generate-components-list</goal> - <goal>generate-dataformats-list</goal> - <goal>generate-languages-list</goal> - <goal>generate-legal</goal> - </goals> - <phase>process-classes</phase> - </execution> - <execution> - <id>validate</id> - <goals> - <goal>validate-components</goal> - <goal>prepare-spring-boot-starter</goal> - <goal>prepare-spring-boot-auto-configuration</goal> - </goals> - <phase>prepare-package</phase> - </execution> - <execution> - <id>readme</id> - <goals> - <goal>update-readme</goal> - </goals> - <phase>package</phase> - </execution> - </executions> - </plugin> - <plugin> - <artifactId>maven-resources-plugin</artifactId> - <executions> - <execution> - <id>copy-generated-resources</id> - <goals> - <goal>resources</goal> - </goals> - <phase>process-classes</phase> - <configuration> - <resources> - <resource> - <directory>${basedir}/target/generated/camel/components</directory> - </resource> - <resource> - <directory>${basedir}/target/generated/camel/dataformats</directory> - </resource> - <resource> - <directory>${basedir}/target/generated/camel/languages</directory> - </resource> - <resource> - <directory>${basedir}/target/generated/camel/models</directory> - </resource> - <resource> - <directory>${basedir}/target/generated/camel/jaxb</directory> - </resource> - <resource> - <directory>${basedir}/target/generated/camel/legal</directory> - </resource> - </resources> - </configuration> - </execution> - </executions> - </plugin> - </plugins> - </build> - - <profiles> - <profile> - <id>validate</id> - <build> - <plugins> - <!-- to validate Camel endpoints: mvn camel:validate -Pvalidate --> - <plugin> - <groupId>org.apache.camel</groupId> - <artifactId>camel-maven-plugin</artifactId> - <version>${project.version}</version> - <configuration> - <failOnError>true</failOnError> - <includeTest>true</includeTest> - <ignoreLenientProperties>false</ignoreLenientProperties> - </configuration> - </plugin> - </plugins> - </build> - </profile> - - <!-- enables the APT dependency so that it can be disabled in IDE builds --> - <profile> - <id>apt</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> - - <dependencies> - - <!-- enable the APT processor --> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>apt</artifactId> - <scope>provided</scope> - </dependency> - - </dependencies> - </profile> - - </profiles> - </project>