diff --git a/core/src/main/java/io/openepcis/converter/common/GS1FormatSupport.java b/core/src/main/java/io/openepcis/converter/common/GS1FormatSupport.java index fd0e58a..9befd67 100644 --- a/core/src/main/java/io/openepcis/converter/common/GS1FormatSupport.java +++ b/core/src/main/java/io/openepcis/converter/common/GS1FormatSupport.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.common; import io.openepcis.constants.EPCISFormat; diff --git a/core/src/main/java/io/openepcis/converter/common/IdentifierConverterUtil.java b/core/src/main/java/io/openepcis/converter/common/IdentifierConverterUtil.java index a71e33c..151efaf 100644 --- a/core/src/main/java/io/openepcis/converter/common/IdentifierConverterUtil.java +++ b/core/src/main/java/io/openepcis/converter/common/IdentifierConverterUtil.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.common; import io.openepcis.converter.exception.FormatConverterException; diff --git a/service/converter-service-rest/pom.xml b/service/converter-service-rest/pom.xml index c980a2d..9ef8f9a 100644 --- a/service/converter-service-rest/pom.xml +++ b/service/converter-service-rest/pom.xml @@ -1,4 +1,21 @@ + 4.0.0 diff --git a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/exception/ExceptionMapper.java b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/exception/ExceptionMapper.java index c3024ca..7beb234 100644 --- a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/exception/ExceptionMapper.java +++ b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/exception/ExceptionMapper.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.epc.converter.exception; import io.openepcis.converter.exception.FormatConverterException; diff --git a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/DocumentConverterResource.java b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/DocumentConverterResource.java index 67d2add..53a7989 100644 --- a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/DocumentConverterResource.java +++ b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/DocumentConverterResource.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.epc.converter.resource; import io.openepcis.constants.EPCISFormat; diff --git a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/IdentifierConverterResource.java b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/IdentifierConverterResource.java index ae0062b..e6a8a6f 100644 --- a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/IdentifierConverterResource.java +++ b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/IdentifierConverterResource.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.epc.converter.resource; import io.openepcis.converter.exception.FormatConverterException; diff --git a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/ParameterDescription.java b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/ParameterDescription.java index a47b11d..64879a6 100644 --- a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/ParameterDescription.java +++ b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/resource/ParameterDescription.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.epc.converter.resource; public interface ParameterDescription { diff --git a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/util/GS1FormatProvider.java b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/util/GS1FormatProvider.java index a86b2e0..e4ef955 100644 --- a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/util/GS1FormatProvider.java +++ b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/util/GS1FormatProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.epc.converter.util; import io.openepcis.converter.common.GS1FormatSupport; diff --git a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/util/StreamingOutputMessageBodyWriter.java b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/util/StreamingOutputMessageBodyWriter.java index 211e52b..9110841 100644 --- a/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/util/StreamingOutputMessageBodyWriter.java +++ b/service/converter-service-rest/src/main/java/io/openepcis/epc/converter/util/StreamingOutputMessageBodyWriter.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.epc.converter.util; import java.io.IOException; diff --git a/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/DocumentConverterResourceTest.java b/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/DocumentConverterResourceTest.java index 259805b..72173bb 100644 --- a/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/DocumentConverterResourceTest.java +++ b/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/DocumentConverterResourceTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.resource.test; import io.openepcis.converter.service.restassured.AbstractDocumentConverterTest; diff --git a/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/DocumentVersionDetectionTest.java b/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/DocumentVersionDetectionTest.java index 6ed8d59..9b27392 100644 --- a/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/DocumentVersionDetectionTest.java +++ b/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/DocumentVersionDetectionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.resource.test; import io.openepcis.converter.service.restassured.AbstractDocumentVersionDetectionTest; diff --git a/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/IdentifierConverterResourceTest.java b/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/IdentifierConverterResourceTest.java index b447a44..faa9e15 100644 --- a/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/IdentifierConverterResourceTest.java +++ b/service/converter-service-rest/src/test/java/io/openepcis/converter/resource/test/IdentifierConverterResourceTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.resource.test; import io.openepcis.converter.service.restassured.AbstractIdentifierConverterTest; diff --git a/service/converter-service-restassured/pom.xml b/service/converter-service-restassured/pom.xml index bbcd5f9..8afc879 100644 --- a/service/converter-service-restassured/pom.xml +++ b/service/converter-service-restassured/pom.xml @@ -1,4 +1,21 @@ + 4.0.0 diff --git a/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentConverterTest.java b/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentConverterTest.java index c0618d4..9970a2c 100644 --- a/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentConverterTest.java +++ b/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentConverterTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.service.restassured; import io.openepcis.resources.util.Commons; diff --git a/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentVersionConverterTest.java b/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentVersionConverterTest.java index 35df3d5..3067cf3 100644 --- a/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentVersionConverterTest.java +++ b/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentVersionConverterTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.service.restassured; import io.openepcis.resources.util.Commons; diff --git a/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentVersionDetectionTest.java b/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentVersionDetectionTest.java index fbcb892..709e1e5 100644 --- a/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentVersionDetectionTest.java +++ b/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractDocumentVersionDetectionTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.service.restassured; import io.openepcis.resources.util.Commons; diff --git a/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractIdentifierConverterTest.java b/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractIdentifierConverterTest.java index 3ed89d4..4658556 100644 --- a/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractIdentifierConverterTest.java +++ b/service/converter-service-restassured/src/main/java/io/openepcis/converter/service/restassured/AbstractIdentifierConverterTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.service.restassured; import io.restassured.RestAssured; diff --git a/service/converter-service-servlet/pom.xml b/service/converter-service-servlet/pom.xml index 1c8eaf9..bffc9e3 100644 --- a/service/converter-service-servlet/pom.xml +++ b/service/converter-service-servlet/pom.xml @@ -1,4 +1,21 @@ + 4.0.0 diff --git a/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/DetectDocumentVersionServlet.java b/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/DetectDocumentVersionServlet.java index 4b7cad7..06c5fed 100644 --- a/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/DetectDocumentVersionServlet.java +++ b/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/DetectDocumentVersionServlet.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.servlet; import io.openepcis.converter.VersionTransformer; diff --git a/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/DocumentConverterServlet.java b/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/DocumentConverterServlet.java index af86b69..8b4b9d8 100644 --- a/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/DocumentConverterServlet.java +++ b/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/DocumentConverterServlet.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.servlet; import io.openepcis.constants.EPCISFormat; diff --git a/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/IdentifierConverterServlets.java b/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/IdentifierConverterServlets.java index 24034c2..212d78d 100644 --- a/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/IdentifierConverterServlets.java +++ b/service/converter-service-servlet/src/main/java/io/openepcis/converter/servlet/IdentifierConverterServlets.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.servlet; import io.openepcis.converter.common.IdentifierConverterUtil; diff --git a/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/CDITestProducer.java b/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/CDITestProducer.java index 35e420e..d5fd83c 100644 --- a/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/CDITestProducer.java +++ b/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/CDITestProducer.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.servlet.test; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/DocumentConverterServletTest.java b/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/DocumentConverterServletTest.java index 943a1f4..056d039 100644 --- a/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/DocumentConverterServletTest.java +++ b/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/DocumentConverterServletTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.servlet.test; import io.openepcis.converter.service.restassured.AbstractDocumentConverterTest; diff --git a/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/IdentifierConverterServletTest.java b/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/IdentifierConverterServletTest.java index b07b220..e77fb9a 100644 --- a/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/IdentifierConverterServletTest.java +++ b/service/converter-service-servlet/src/test/java/io/openepcis/converter/servlet/test/IdentifierConverterServletTest.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.converter.servlet.test; import io.openepcis.converter.service.restassured.AbstractIdentifierConverterTest; diff --git a/service/quarkus-converter-service/pom.xml b/service/quarkus-converter-service/pom.xml index 35a4004..f9ee188 100644 --- a/service/quarkus-converter-service/pom.xml +++ b/service/quarkus-converter-service/pom.xml @@ -1,4 +1,21 @@ + 4.0.0 diff --git a/service/quarkus-converter-service/src/main/java/io/openepcis/epc/converter/RESTApplication.java b/service/quarkus-converter-service/src/main/java/io/openepcis/epc/converter/RESTApplication.java index 3132d27..6188b07 100644 --- a/service/quarkus-converter-service/src/main/java/io/openepcis/epc/converter/RESTApplication.java +++ b/service/quarkus-converter-service/src/main/java/io/openepcis/epc/converter/RESTApplication.java @@ -1,3 +1,18 @@ +/* + * Copyright 2022-2024 benelog GmbH & Co. KG + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package io.openepcis.epc.converter; import io.quarkus.runtime.annotations.RegisterForReflection;