Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Here is the complete list of ready-to-use ConnId bundles; if needed, new connector bundles can also be developed on-purpose.

Connector bundles can be added or replaced:

...

  1. Add a new property into your own project's root pom.xml:

    Code Block
    languagexml
    <properties>
       ...
       <my.new.connector.version>1.0.0</my.new.connector.version>
    </properties>
  2. Change maven-dependency-plugin's configuration both in core/pom.xml and console/pom.xml from

    Code Block
    languagexml
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <inherited>true</inherited>
            <executions>
              <execution>
                <id>set-bundles</id>
                <phase>process-test-resources</phase>
                <goals>
                  <goal>copy</goal>
                </goals>
              </execution>
            </executions>
          </plugin>

    to

    Code Block
    languagexml
          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-dependency-plugin</artifactId>
            <inherited>true</inherited>
            <configuration>                 
              <artifactItems>
                <dependency><artifactItem>
                  <groupId>my.new.connector.groupId</groupId>
                  <artifactId>my.new.connector.artifactId</artifactId>
                  <version>${my.new.connector.version}</version>
                </dependency>artifactItem>
              </artifactItems>
            </configuration>
            <executions>
              <execution>
                <id>set-bundles</id>
                <phase>process-test-resources</phase>
                <goals>
                  <goal>copy</goal>
                </goals>
              </execution>
            </executions>
          </plugin>

...