I need to write a simple SwitchYard application, but looks like maven doesn't like SwitchYard anyway, because it cannot find maven dependencies at the central repo. I don't know how to fix it, because there is no any documentation and JBoss repositories to get dependencies from it. Here is pom.xml and error log, hope you would give me some ideas:
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://ift.tt/IH78KX http://ift.tt/VE5zRx" xmlns="http://ift.tt/IH78KX"
xmlns:xsi="http://ift.tt/ra1lAU">
<modelVersion>4.0.0</modelVersion>
<groupId>com.project</groupId>
<artifactId>FirstProject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>com.project:FirstProject</name>
<properties>
<switchyard.version>1.1.0.FINAL</switchyard.version>
</properties>
<dependencies>
<dependency>
<groupId>org.switchyard.components</groupId>
<artifactId>switchyard-component-bean</artifactId>
<version>${switchyard.version}</version>
</dependency>
<dependency>
<groupId>org.switchyard</groupId>
<artifactId>switchyard-api</artifactId>
<version>${switchyard.version}</version>
</dependency>
<dependency>
<groupId>org.switchyard</groupId>
<artifactId>switchyard-transform</artifactId>
<version>${switchyard.version}</version>
</dependency>
<dependency>
<groupId>org.switchyard</groupId>
<artifactId>switchyard-validate</artifactId>
<version>${switchyard.version}</version>
</dependency>
<dependency>
<groupId>org.switchyard</groupId>
<artifactId>switchyard-plugin</artifactId>
<version>${switchyard.version}</version>
</dependency>
<dependency>
<groupId>org.switchyard</groupId>
<artifactId>switchyard-test</artifactId>
<version>${switchyard.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.switchyard.components</groupId>
<artifactId>switchyard-component-test-mixin-cdi</artifactId>
<version>${switchyard.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.switchyard</groupId>
<artifactId>switchyard-plugin</artifactId>
<version>${switchyard.version}</version>
<executions>
<execution>
<goals>
<goal>configure</goal>
</goals>
</execution>
</executions>
<configuration>
<scannerClassNames>
<param>org.switchyard.transform.config.model.TransformSwitchYardScanner</param>
</scannerClassNames>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<debug>true</debug>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
</project>
[ERROR] Plugin org.switchyard:switchyard-plugin:1.1.0.FINAL or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.switchyard:switchyard-plugin:jar:1.1.0.FINAL: Could not find artifact org.switchyard:switchyard-plugin:pom:1.1.0.FINAL in central (http://ift.tt/1eAGeW3) -> [Help 1]
Aucun commentaire:
Enregistrer un commentaire