You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2021/07/09 12:51:16 UTC

[sling-project-archetype] 02/02: SLING-10594 - Generated project imports with error in Eclipse

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch feature/SLING-10594
in repository https://gitbox.apache.org/repos/asf/sling-project-archetype.git

commit e0580aba61676a454e118209dac695c1d39d5279
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Fri Jul 9 15:50:45 2021 +0300

    SLING-10594 - Generated project imports with error in Eclipse
    
    Correct the package declaration for DoesNothing
---
 .../archetype-resources/core/src/main/java/empty/DoesNothing.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/resources/archetype-resources/core/src/main/java/empty/DoesNothing.java b/src/main/resources/archetype-resources/core/src/main/java/empty/DoesNothing.java
index be62b88..a63ff85 100644
--- a/src/main/resources/archetype-resources/core/src/main/java/empty/DoesNothing.java
+++ b/src/main/resources/archetype-resources/core/src/main/java/empty/DoesNothing.java
@@ -14,7 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
-package empty;
+package ${package}.empty;
 
 public class DoesNothing {
 }
\ No newline at end of file