둘러보기 생략.
 

readme.txt 수정 요청

배포판에 포함된 readme.txt의 maven 설정에 오류가 있습니다.

아래 내용을
<profile>
<id>anyframeprofile</id>
<repositories>
<repository>
<id>central</id>
<name>repository for Anyframe</name>
<url>http://dev.anyframejava.org/artifactory/anyframe-repository</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Internal Mirror of Central Plugins Repository</name>
<url>http://www.ibiblio.org/maven2/plugins</url>
</pluginRepository>
<pluginRepository>
<id>remote</id>
<name>Internal Mirror of Central Plugins Repository</name>
<url>http://repo1.maven.org/maven2</url>
</pluginRepository>
</pluginRepositories>
</profile>
<activeProfiles>
<activeProfile>anyframeprofile</activeProfile>
</activeProfiles>

이렇게 수정하셔야 합니다.

<profiles>
<profile>
<id>anyframeprofile</id>
<repositories>
<repository>
<id>central</id>
<name>repository for Anyframe</name>
<url>http://dev.anyframejava.org/artifactory/anyframe-repository</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Internal Mirror of Central Plugins Repository</name>
<url>http://www.ibiblio.org/maven2/plugins</url>
</pluginRepository>
<pluginRepository>
<id>remote</id>
<name>Internal Mirror of Central Plugins Repository</name>
<url>http://repo1.maven.org/maven2</url>
</pluginRepository>
</pluginRepositories>
</profile>

</profiles>
<activeProfiles>
<activeProfile>anyframeprofile</activeProfile>
</activeProfiles>

즉, activeProfiles 는 profiles 밖에 나와야합니다.

답변입니다.

안녕하세요.

readme.txt 파일 내에서,
<profile>을 추가한 후 <activeProfile>에 등록하도록 가이드하고 있습니다.

이때 <profile>을 <profiles> Tag 내에 추가해야 한다는 내용이 생략되어 혼동될 수 있으므로
다음 버전 릴리즈 시에는 좀더 자세히 명시되도록 하겠습니다.

즉, 정리하면

<profile>은 <profiles> Tag 내에,
<activeProfile>은 <activeProfiles> Tag 내에 작성해주시면 됩니다.

감사합니다.