Skip to content

Commit 703bc14

Browse files
committed
Update copyright and change some configuration
1 parent 5c6708d commit 703bc14

File tree

52 files changed

+414
-265
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+414
-265
lines changed

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
---
22
name: Task
3-
about: Suggest a task for this project. This can be any type of work item like for example a feature request.
3+
about: Suggest a task for this project. This can be any type of work item like for example a feature request.
44
title: '[Task]'
55
labels: task
66
assignees: ''
77

88
---
99

1010
**Is your task related to a problem? Please describe.**
11-
A clear and concise description of what the problem is. Examples are "I am always frustrated when [...]", or "I think it is cumbersome to [...]", "There seems to be a better way to [...]"
11+
A clear and concise description of what the problem is. Examples are "I am always frustrated when [...]", or "I think it is cumbersome to [...]", "There seems
12+
to be a better way to [...]"
1213

1314
**Describe the solution you'd like**
1415
A clear and concise description of what you want to happen.

aspect-model-editor-core/pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
~ Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH, Germany. All rights reserved.
3+
~ Copyright (c) 2025 Robert Bosch Manufacturing Solutions GmbH
4+
~
5+
~ See the AUTHORS file(s) distributed with this work for
6+
~ additional information regarding authorship.
7+
~
8+
~ This Source Code Form is subject to the terms of the Mozilla Public
9+
~ License, v. 2.0. If a copy of the MPL was not distributed with this
10+
~ file, You can obtain one at https://mozilla.org/MPL/2.0/.
11+
~
12+
~ SPDX-License-Identifier: MPL-2.0
413
-->
514

615
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

aspect-model-editor-core/src/main/java/org/eclipse/esmf/ame/config/ApplicationSettings.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
2+
* Copyright (c) 2025 Robert Bosch Manufacturing Solutions GmbH
33
*
44
* See the AUTHORS file(s) distributed with this work for
55
* additional information regarding authorship.
@@ -19,6 +19,14 @@
1919
import io.micronaut.context.annotation.ConfigurationProperties;
2020
import jakarta.inject.Singleton;
2121

22+
/**
23+
* Application settings configuration class.
24+
* <p>
25+
* This class provides static methods to retrieve paths used in the application,
26+
* such as the models storage path and the end file path.
27+
* It uses system properties and predefined constants to construct these paths.
28+
* </p>
29+
*/
2230
@Singleton
2331
@ConfigurationProperties( "setting" )
2432
public class ApplicationSettings {

aspect-model-editor-core/src/main/java/org/eclipse/esmf/ame/exceptions/CreateFileException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
2+
* Copyright (c) 2025 Robert Bosch Manufacturing Solutions GmbH
33
*
44
* See the AUTHORS file(s) distributed with this work for
55
* additional information regarding authorship.

aspect-model-editor-core/src/main/java/org/eclipse/esmf/ame/exceptions/FileHandlingException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
2+
* Copyright (c) 2025 Robert Bosch Manufacturing Solutions GmbH
33
*
44
* See the AUTHORS file(s) distributed with this work for
55
* additional information regarding authorship.

aspect-model-editor-core/src/main/java/org/eclipse/esmf/ame/exceptions/FileNotFoundException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
2+
* Copyright (c) 2025 Robert Bosch Manufacturing Solutions GmbH
33
*
44
* See the AUTHORS file(s) distributed with this work for
55
* additional information regarding authorship.

aspect-model-editor-core/src/main/java/org/eclipse/esmf/ame/exceptions/FileReadException.java

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
2+
* Copyright (c) 2025 Robert Bosch Manufacturing Solutions GmbH
33
*
44
* See the AUTHORS file(s) distributed with this work for
55
* additional information regarding authorship.
@@ -27,14 +27,4 @@ public class FileReadException extends RuntimeException {
2727
public FileReadException( final String message ) {
2828
super( message );
2929
}
30-
31-
/**
32-
* Constructs a FileReadException with message and cause.
33-
*
34-
* @param message the message of the exception
35-
* @param cause of the exception
36-
*/
37-
public FileReadException( final String message, final Throwable cause ) {
38-
super( message, cause );
39-
}
4030
}

aspect-model-editor-core/src/main/java/org/eclipse/esmf/ame/exceptions/FileWriteException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
2+
* Copyright (c) 2025 Robert Bosch Manufacturing Solutions GmbH
33
*
44
* See the AUTHORS file(s) distributed with this work for
55
* additional information regarding authorship.

aspect-model-editor-core/src/main/java/org/eclipse/esmf/ame/exceptions/GenerationException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
2+
* Copyright (c) 2025 Robert Bosch Manufacturing Solutions GmbH
33
*
44
* See the AUTHORS file(s) distributed with this work for
55
* additional information regarding authorship.

aspect-model-editor-core/src/main/java/org/eclipse/esmf/ame/exceptions/InvalidAspectModelException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2023 Robert Bosch Manufacturing Solutions GmbH
2+
* Copyright (c) 2025 Robert Bosch Manufacturing Solutions GmbH
33
*
44
* See the AUTHORS file(s) distributed with this work for
55
* additional information regarding authorship.

0 commit comments

Comments
 (0)