[
Date Prev][
Date Next][
Thread Prev][
Thread Next][
Date Index][
Thread Index]
[
List Home]
| 
Re: [tycho-user] Export product via tycho
 | 
Hello Denis
Build log and parent pom  have been attached. In build I can see that maven cannot find concrete version of antlr. But this version is exist in xtext 2.9.2 repository for example here
Regards
Alex
 
Attachment:
build2.log
Description: Binary data
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.psl.atom</groupId>
    <artifactId>parent</artifactId>
    <version>3.4.0-SNAPSHOT</version>
    <packaging>pom</packaging>
    <properties>
        <tycho.version>0.24.0</tycho.version>
        <xtext.version>2.9.2</xtext.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <mars.repo.url>http://download.eclipse.org/releases/mars</mars.repo.url>
        <xtext.repo.url>http://download.eclipse.org/modeling/tmf/xtext/updates/releases/${xtext.version}</xtext.repo.url>
        <project.groupId>com.psl.atom</project.groupId>
    </properties>
    <repositories>
        <repository>
            <id>eclipse</id>
            <layout>p2</layout>
            <url>${mars.repo.url}</url>
        </repository>
        <repository>
            <id>Xtext Update Site</id>
            <layout>p2</layout>
            <url>${xtext.repo.url}/</url>
        </repository>
        <repository>
            <id>Oracle 12.2.1.2</id>
            <layout>p2</layout>
            <url>http://download.oracle.com/otn_software/oepe/12.2.1.2/mars/repository/</url>
        </repository>
        <repository>
            <id>Oracle 12.2.1.2 dependencies</id>
            <layout>p2</layout>
            <url>http://download.oracle.com/otn_software/oepe/12.2.1.2/mars/repository/dependencies</url>
        </repository>
    </repositories>
    <modules>
        <module>com.psl.atom</module>
        <module>com.psl.atom.help</module>
        <module>com.psl.atom.ide</module>
        <module>com.psl.atom.lib</module>
        <module>com.psl.atom.services</module>
        <module>com.psl.atom.build</module>
        <module>com.psl.atom.ui</module>
    </modules>
    <build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-compiler-plugin</artifactId>
                    <version>3.5.1</version>
                    <configuration>
                        <source>1.8</source>
                        <target>1.8</target>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.eclipse.xtend</groupId>
                    <artifactId>xtend-maven-plugin</artifactId>
                    <version>${xtext.version}</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>compile</goal>
                                <goal>xtend-install-debug-info</goal>
                            </goals>
                        </execution>
                    </executions>
                    <configuration>
                        <outputDirectory>xtend-gen</outputDirectory>
                    </configuration>
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-clean-plugin</artifactId>
                    <version>2.5</version>
                    <executions>
                        <execution>
                            <id>gen-clean</id>
                            <goals>
                                <goal>clean</goal>
                            </goals>
                            <configuration>
                                <filesets>
                                    <fileset>
                                        <directory>${basedir}/xtend-gen</directory>
                                    </fileset>
                                </filesets>
                            </configuration>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.eclipse.tycho</groupId>
                <artifactId>tycho-maven-plugin</artifactId>
                <version>${tycho.version}</version>
                <extensions>true</extensions>
                <configuration>
                    <target>
                        <artifact>
                            <groupId>com.psl.atom</groupId>
                            <artifactId>com.psl.atom.target</artifactId>
                            <version>1.0.0-SNAPSHOT</version>
                        </artifact>
                    </target>
                    <environments>
                        <environment>
                            <os>win32</os>
                            <ws>win32</ws>
                            <arch>x86</arch>
                        </environment>
                        <environment>
                            <os>win32</os>
                            <ws>win32</ws>
                            <arch>x86_64</arch>
                        </environment>
                    </environments>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>