Hi All

I am getting the following error when building from source:

[ERROR] Failed to execute goal on project wflow-commons: Could not resolve dependencies for project org.joget:wflow-commons:jar:3.1-SNAPSHOT: Failure to find javax.transaction:jta:jar:1.0.1B in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
[ERROR] Failed to execute goal on project wflow-commons: Could not resolve dependencies for project org.joget:wflow-commons:jar:3.1-SNAPSHOT: Failure to find javax.transaction:jta:jar:1.0.1B in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]

Is this just me or is anyone else getting this?

  • No labels

1 Comment

  1. Same here. Resolved using joget's repository at http://dev.joget.org/archiva/repository/internal/

    Add a prolile in your .m2/settings.xml file that references this repository :

    <settings>
      <profiles>
        <!-- Joget -->
        <profile>
            <id>joget</id>
            <repositories>
                <repository>
                    <id>joget-internal</id>
                    <name>Joget Internal</name>
                    <url>http://dev.joget.org/archiva/repository/internal/</url>
                </repository>
            </repositories>
        </profile>
      </profiles>
      <activeProfiles>
        <activeProfile>joget</activeProfile>
        <activeProfile>default</activeProfile>
      </activeProfiles>
    </settings>