[hibernate-issues] [Hibernate-JIRA] Commented: (HSEARCH-503) Generated archetype broken for any package name with dot (.)

G Fernandes (JIRA) noreply at atlassian.com
Sat Apr 10 17:04:58 EDT 2010


    [ http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-503?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=36363#action_36363 ] 

G Fernandes commented on HSEARCH-503:
-------------------------------------

The goal create-from-project of the maven-archetype-plugin tries to do some clever guessing of the package name, but  ends up doing not so clever things like generating java files with 

{code}
package ${packageInPathFormat}; 
{code}
rather than 
{code}
package ${package};
{code}

When creating a project form the archetype and specifying a compound package name, such as "com.mycompany", the source code generated includes:

{code}package com/mycompany{code}  instead of 
{code}com.mycompany{code}

This is a bug of the maven-archetype-plugin, and a workaround is to keep the model project as package "com.example" rather than just "example". Patch attached.


> Generated archetype broken for any package name with dot (.)
> ------------------------------------------------------------
>
>                 Key: HSEARCH-503
>                 URL: http://opensource.atlassian.com/projects/hibernate/browse/HSEARCH-503
>             Project: Hibernate Search
>          Issue Type: Patch
>          Components: build
>    Affects Versions: 3.2.0.Beta1
>            Reporter: G Fernandes
>            Priority: Minor
>
> Steps to reproduce:
> =====================
> $ cd hibernate-search-archetype
> $ mvn archetype:create-from-project -Darchetype.properties=src/main/archetype/archetype.properties
> ...
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD SUCCESSFUL
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 4 seconds
> [INFO] Finished at: Sat Apr 10 20:35:58 BST 2010
> [INFO] Final Memory: 16M/80M
> [INFO] ------------------------------------------------------------------------
> $ cd target/generate-sources/archetype
> $ mvn install
> ...
> [INFO] BUILD SUCCESSFUL
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 3 seconds
> [INFO] Finished at: Sat Apr 10 20:36:50 BST 2010
> [INFO] Final Memory: 18M/80M
> [INFO] ------------------------------------------------------------------------
> $ cd ~/temp
> $ mvn archetype:generate  -DarchetypeGroupId=org.hibernate -DarchetypeArtifactId=hibernate-search-quickstart -DarchetypeVersion=3.2.0-SNAPSHOT -DgroupId=my.company -DartifactId=quickstart -Dversion=1.0-SNAPSHOT
> ...
> [INFO] ------------------------------------------------------------------------
> [INFO] BUILD SUCCESSFUL
> [INFO] ------------------------------------------------------------------------
> [INFO] Total time: 5 seconds
> [INFO] Finished at: Sat Apr 10 20:39:17 BST 2010
> [INFO] Final Memory: 13M/79M
> [INFO] ------------------------------------------------------------------------
> $ cd quickstart
> $ mvn install
> [INFO] -------------------------------------------------------------
> [ERROR] COMPILATION ERROR : 
> [INFO] -------------------------------------------------------------
> [ERROR] /Users/gustavo/temp/quickstart/src/main/java/com/mycomany/Book.java:[25,11] ';' expected
> [ERROR] /Users/gustavo/temp/quickstart/src/main/java/com/mycomany/Book.java:[37,10] '.' expected
> [ERROR] /Users/gustavo/temp/quickstart/src/main/java/com/mycomany/Book.java:[37,11] ';' expected
> [ERROR] /Users/gustavo/temp/quickstart/src/main/java/com/mycomany/Book.java:[37,19] class, interface, or enum expected
> [ERROR] /Users/gustavo/temp/quickstart/src/main/java/com/mycomany/Book.java:[37,20] class, interface, or enum expected
> [ERROR] /Users/gustavo/temp/quickstart/src/main/java/com/mycomany/Author.java:[25,11] ';' expected

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://opensource.atlassian.com/projects/hibernate/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        


More information about the hibernate-issues mailing list