--- /dev/null
+To build the platform, run:
+mvn -s settings.xml package
+
+or to run unit tests as well:
+mvn -s settings.xml verify
+
+If you're building the platform inside Eclipse IDE, remember to give
+the settings.xml file to the Maven / User Settings preference page
+User Settings field.
--- /dev/null
+<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>
+ <artifactId>org.simantics.editors.win32</artifactId>
+ <packaging>eclipse-plugin</packaging>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <parent>
+ <groupId>org.simantics</groupId>
+ <artifactId>org.simantics.root.bundles</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <relativePath>..</relativePath>
+ </parent>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <configuration>
+ <environments>
+ <environment>
+ <os>win32</os>
+ </environment>
+ </environments>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
</artifact>
</target>
<environments>
-<!--
<environment>
<os>linux</os>
<ws>gtk</ws>
<ws>gtk</ws>
<arch>x86_64</arch>
</environment>
--->
<environment>
<os>win32</os>
<ws>win32</ws>
<ws>win32</ws>
<arch>x86_64</arch>
</environment>
-<!--
<environment>
<os>macosx</os>
<ws>cocoa</ws>
<arch>x86_64</arch>
</environment>
--->
</environments>
</configuration>
</plugin>
--- /dev/null
+<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
+ http://maven.apache.org/xsd/settings-1.0.0.xsd">
+ <servers>
+ <server>
+ <id>graph-builder-snapshot</id>
+ <username>graph-builder</username>
+ <password>graph-builder</password>
+ </server>
+ </servers>
+</settings>
+