OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

xdi message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Building experience with OpenXDI


Hi Mike, Yuri,

I thought you might be interested in my experience building (the Java part of) OpenXDI with Maven.

1. Initially I got a lot of errors saying that annotations/generics/etc. are not supported in java -source 1.3.
I fixed this by adding the following to the code/pom.xml:

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

2. Next, I got some errors about failed checksums of httpcomponents.
I fixed this by removing the following from code/WebClient/pom.xml:

    <repository>
      <id>jarvana-repository</id>
      <url>http://jarvana.com/jarvana/browse</url>
    </repository>

In general, it seems the build environment contains several hardcoded gluu-internal paths which point to locations outside the SVN repository.
But with the above changes I was able to build the graphmodel-0.1.jar and oxServer-0.1.war.

Markus



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]