Skip to content

Commit c588202

Browse files
authored
Merge pull request #15 from AxonFramework/Feature/14-license-plugin-removal
Maven license plugin removal
2 parents 14812f9 + c142d90 commit c588202

File tree

9 files changed

+6
-256
lines changed

9 files changed

+6
-256
lines changed

kotlin/pom.xml

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
~ you may not use this file except in compliance with the License.
77
~ You may obtain a copy of the License at
88
~
9-
~ http://www.apache.org/licenses/LICENSE-2.0
9+
~ http://www.apache.org/licenses/LICENSE-2.0
1010
~
1111
~ Unless required by applicable law or agreed to in writing, software
1212
~ distributed under the License is distributed on an "AS IS" BASIS,
@@ -37,19 +37,4 @@
3737
<scope>provided</scope>
3838
</dependency>
3939
</dependencies>
40-
41-
<profiles>
42-
<profile>
43-
<id>license</id>
44-
<build>
45-
<plugins>
46-
<plugin>
47-
<groupId>org.codehaus.mojo</groupId>
48-
<artifactId>license-maven-plugin</artifactId>
49-
</plugin>
50-
</plugins>
51-
</build>
52-
</profile>
53-
</profiles>
54-
5540
</project>

kotlin/src/license/axon_apache_v2/header.txt

Lines changed: 0 additions & 11 deletions
This file was deleted.

kotlin/src/license/axon_apache_v2/license.txt

Lines changed: 0 additions & 202 deletions
This file was deleted.

kotlin/src/license/licenses.properties

Lines changed: 0 additions & 1 deletion
This file was deleted.

kotlin/src/main/kotlin/org/axonframework/extensions/kotlin/CommandGatewayExtensions.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.axonframework.extensions.kotlin
1718

1819
import org.axonframework.commandhandling.CommandMessage

kotlin/src/main/kotlin/org/axonframework/extensions/kotlin/EventUpcaster.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.axonframework.extensions.kotlin
1718

1819
import org.axonframework.serialization.SimpleSerializedType

kotlin/src/main/kotlin/org/axonframework/extensions/kotlin/GenericEventMessageExtensions.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.axonframework.extensions.kotlin
1718

1819
import org.axonframework.eventhandling.GenericEventMessage

kotlin/src/main/kotlin/org/axonframework/extensions/kotlin/QueryGatewayExtensions.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16+
1617
package org.axonframework.extensions.kotlin
1718

1819
import org.axonframework.messaging.responsetypes.ResponseTypes

pom.xml

Lines changed: 1 addition & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
~ you may not use this file except in compliance with the License.
77
~ You may obtain a copy of the License at
88
~
9-
~ http://www.apache.org/licenses/LICENSE-2.0
9+
~ http://www.apache.org/licenses/LICENSE-2.0
1010
~
1111
~ Unless required by applicable law or agreed to in writing, software
1212
~ distributed under the License is distributed on an "AS IS" BASIS,
@@ -253,31 +253,6 @@
253253
<artifactId>maven-install-plugin</artifactId>
254254
<version>2.5.2</version>
255255
</plugin>
256-
<!-- License -->
257-
<plugin>
258-
<groupId>org.codehaus.mojo</groupId>
259-
<artifactId>license-maven-plugin</artifactId>
260-
<version>2.0.0</version>
261-
<configuration>
262-
<licenseName>axon_apache_v2</licenseName>
263-
<licenseResolver>${project.baseUri}src/license</licenseResolver>
264-
<inceptionYear>2019</inceptionYear>
265-
<roots>
266-
<root>src/main/kotlin</root>
267-
<root>src/test/kotlin</root>
268-
</roots>
269-
</configuration>
270-
<executions>
271-
<execution>
272-
<id>update-file-header</id>
273-
<goals>
274-
<goal>update-file-header</goal>
275-
</goals>
276-
<phase>process-sources</phase>
277-
</execution>
278-
</executions>
279-
</plugin>
280-
281256
</plugins>
282257
</pluginManagement>
283258
<plugins>

0 commit comments

Comments
 (0)