Skip to content

Instantly share code, notes, and snippets.

@koalahamlet
Created September 11, 2013 03:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koalahamlet/6518853 to your computer and use it in GitHub Desktop.
Save koalahamlet/6518853 to your computer and use it in GitHub Desktop.
hrm, I get this error. but line 32 seems fine. MikesMac:Desktop koalahamlet$ mvn android-bootstrap-archetype:generate [ERROR] Error executing Maven. [ERROR] 1 problem was encountered while building the effective settings [FATAL] Non-parseable settings /Users/koalahamlet/.m2/settings.xml: Duplicated tag: 'profiles' (position: START_TAG seen ...</…
<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">
<profiles>
<profile>
<id>release</id>
<properties>
<sign.alias>androiddebugkey</sign.alias>
<sign.storepass>android</sign.storepass>
<sign.keypass> android</sign.keypass>
</properties>
</profile>
</profiles>
<servers>
<server>
<id>grio-nexus</id>
<username>deployment</username>
<password>gr!oDeployment</password>
</server>
</servers>
<mirrors>
<mirror>
<id>grio-nexus</id>
<mirrorOf>central</mirrorOf>
<url>http://nexus.grio.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
<pluginGroups>
<pluginGroup>com.grio.android</pluginGroup>
</pluginGroups>
<profiles>
<profile>
<id>grio-nexus</id>
<repositories>
<repository>
<id>grio-releases</id>
<url>http://nexus.grio.com/nexus/content/repositories/releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>grio-snapshots</id>
<url>http://nexus.grio.com/nexus/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>grio-thirdparty</id>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
<layout>default</layout>
<url>http://nexus.grio.com/nexus/content/repositories/thirdparty</url>
</repository>
<repository>
<id>grio-thirdparty-snapshots</id>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<layout>default</layout>
<url>http://nexus.grio.com/nexus/content/repositories/thirdparty-snapshots</url>
</repository>
<repository>
<id>grio-android</id>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
<layout>default</layout>
<url>http://nexus.grio.com/nexus/content/repositories/android</url>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>grio-nexus</activeProfile>
</activeProfiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment