kottore / away3d

Automatically exported from code.google.com/p/away3d
0 stars 0 forks source link

basic pom.xml for building away3d 3.5 with Maven 2 and flex-mojos #124

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
1. copy pom.xml to "away3d/repo/tags/3.5.0 lib"
2. add Sonatype repos to ~/.m2/settings.xml (see below)
3. run "mvn clean compile" to build swc

Sonatype repos in settings.xml:
<!-- snipp -->
    <profile>
      <id>sonatype-flex</id>
      <repositories>
        <repository>
          <id>sonatype</id>
          <url>http://repository.sonatype.org/content/groups/public/</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
        </repository>
        <repository>
          <id>flex-mojos</id>
          <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>sonatype</id>
          <url>http://repository.sonatype.org/content/groups/public/</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
        </pluginRepository>
        <pluginRepository>
          <id>flex-mojos</id>
          <url>http://repository.sonatype.org/content/groups/flexgroup/</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>

  <activeProfiles>
    <activeProfile>sonatype-flex</activeProfile>
  </activeProfiles>

<!-- snapp -->

Original issue reported on code.google.com by google@oliverlietz.de on 17 Jul 2010 at 11:39

Attachments: