On Thu, Jul 16, 2020 at 2:01 PM Stephen Ingram <[email protected]> wrote:
> I'm trying to use the graphical install method and seeing the following
> errors:
>
> [ERROR] The project (/var/tmp/syncope/syncope/console/pom.xml) has 1
> error
> [ERROR] Non-parseable POM /var/tmp/syncope/syncope/console/pom.xml:
> Unrecognised tag: 'build' (position: START_TAG seen ...</dependency>\n\n\n
> <build>... @90:10) @ line 90, column 10 -> [Help 2]
> [ERROR]
> [ERROR] The project net.tirasa:syncope-core:1.0-SNAPSHOT
> (/var/tmp/syncope/syncope/core/pom.xml) has 1 error
> [ERROR] 'dependencies.dependency.version' for
> org.apache.syncope.ext.flowable:syncope-ext-flowable-rest-cxf:jar is
> missing. @ net.tirasa:syncope-core:[unknown-version],
> /var/tmp/syncope/syncope/core/pom.xml, line 133, column 19
>
> I'm using version 3.5.4 of Maven, 1.8.0 OpenJDK, Postgres 11.7 and
> connector 42.2.14 setup as per the getting started guide. I see some
> remarks on the wiki about this, but only for upgrades from 2.1.1 to 2.1.2,
> but not 2.1.6 which is what I'm attempting to install.
>
> Do I need to download these apparently missing packages separately?
>
So is it possible that the pom.xml files referenced have typos in them? I
see in /var/tmp/syncope/syncope/console/pom.xml that there is indeed a
missing </dependencies> (closing) tag. And in
/var/tmp/syncope/syncope/core/pom.xml, there is no version tag for:
<dependency>
<groupId>org.apache.syncope.ext.flowable</groupId>
<artifactId>syncope-ext-flowable-rest-cxf</artifactId>
</dependency>
I'm far from a Maven expert, but I know that XML is very picky about tags.
Am I correct or is there altogether something else wrong here?
Steve