-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Extract spring related code into separate module
- Loading branch information
eschleb
committed
Sep 23, 2024
1 parent
209fc41
commit 3147229
Showing
8 changed files
with
98 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 0 additions & 36 deletions
36
...agnolia/powernode/generator/DelegatingPowerNodeArgumentResolverFactoryClassGenerator.java
This file was deleted.
Oops, something went wrong.
48 changes: 0 additions & 48 deletions
48
...ava/com/merkle/oss/magnolia/powernode/generator/PowerNodeConfigurationClassGenerator.java
This file was deleted.
Oops, something went wrong.
11 changes: 5 additions & 6 deletions
11
...-generator/src/main/java/com/merkle/oss/magnolia/powernode/generator/SourceGenerator.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>com.namics.oss.magnolia</groupId> | ||
<artifactId>magnolia-powernode-parent</artifactId> | ||
<version>2.1.1-SNAPSHOT</version> | ||
</parent> | ||
|
||
<artifactId>magnolia-powernode-spring</artifactId> | ||
|
||
<properties> | ||
<maven.deploy.skip>false</maven.deploy.skip> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>com.namics.oss.magnolia</groupId> | ||
<artifactId>magnolia-powernode-base</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.namics.oss.magnolia</groupId> | ||
<artifactId>magnolia-powernode</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-web</artifactId> | ||
<version>${spring.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
<version>${spring.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters