From 832d2759a09b8a6e7397d80ec01a268dba142bca Mon Sep 17 00:00:00 2001
From: Joerg Werner <4639399+jowerner@users.noreply.github.com>
Date: Thu, 11 Jul 2024 17:03:42 +0200
Subject: [PATCH] prepared release 8.3.0
---
pom.xml | 2 +-
.../xlt/report/scorecard/Configuration.java | 15 +++++++++++++++
.../xceptance/xlt/report/scorecard/Evaluator.java | 15 +++++++++++++++
.../xlt/report/scorecard/GroupDefinition.java | 15 +++++++++++++++
.../xlt/report/scorecard/RatingDefinition.java | 15 +++++++++++++++
.../xlt/report/scorecard/RuleDefinition.java | 15 +++++++++++++++
.../xceptance/xlt/report/scorecard/Scorecard.java | 15 +++++++++++++++
.../xlt/report/scorecard/SelectorDefinition.java | 15 +++++++++++++++
.../xceptance/xlt/report/scorecard/Status.java | 15 +++++++++++++++
.../xlt/report/scorecard/TestFailTrigger.java | 15 +++++++++++++++
.../xlt/report/scorecard/UpdateMain.java | 15 +++++++++++++++
.../xlt/report/scorecard/ValidationException.java | 15 +++++++++++++++
.../report/util/xstream/SanitizingDomDriver.java | 15 +++++++++++++++
.../xlt/report/util/xstream/SanitizingWriter.java | 15 +++++++++++++++
14 files changed, 196 insertions(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index 3fd9a6491..a8c799f8b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
com.xceptance
xlt
- 8.2.1
+ 8.3.0
jar
XLT
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/Configuration.java b/src/main/java/com/xceptance/xlt/report/scorecard/Configuration.java
index ac484ac4e..5316c4b57 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/Configuration.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/Configuration.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
import java.util.Collection;
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/Evaluator.java b/src/main/java/com/xceptance/xlt/report/scorecard/Evaluator.java
index e6f3211f2..b6930faf1 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/Evaluator.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/Evaluator.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
import java.io.BufferedReader;
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/GroupDefinition.java b/src/main/java/com/xceptance/xlt/report/scorecard/GroupDefinition.java
index 9ca9739ed..adda39403 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/GroupDefinition.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/GroupDefinition.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
import java.util.Collections;
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/RatingDefinition.java b/src/main/java/com/xceptance/xlt/report/scorecard/RatingDefinition.java
index 62ce3ef15..237ed94e1 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/RatingDefinition.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/RatingDefinition.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
import java.util.Objects;
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/RuleDefinition.java b/src/main/java/com/xceptance/xlt/report/scorecard/RuleDefinition.java
index b59fb3a8f..9a1aca889 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/RuleDefinition.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/RuleDefinition.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
import java.util.LinkedList;
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/Scorecard.java b/src/main/java/com/xceptance/xlt/report/scorecard/Scorecard.java
index b38640326..ad8f2a2eb 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/Scorecard.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/Scorecard.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
import java.util.Collections;
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/SelectorDefinition.java b/src/main/java/com/xceptance/xlt/report/scorecard/SelectorDefinition.java
index b43a2d34c..08ba07ee2 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/SelectorDefinition.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/SelectorDefinition.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
import java.util.Objects;
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/Status.java b/src/main/java/com/xceptance/xlt/report/scorecard/Status.java
index 4e4e2c6e4..e9fd82bbd 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/Status.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/Status.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
import com.thoughtworks.xstream.annotations.XStreamConverter;
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/TestFailTrigger.java b/src/main/java/com/xceptance/xlt/report/scorecard/TestFailTrigger.java
index 113af7698..c77d984ae 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/TestFailTrigger.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/TestFailTrigger.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
enum TestFailTrigger
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/UpdateMain.java b/src/main/java/com/xceptance/xlt/report/scorecard/UpdateMain.java
index a34d4fa6b..0f495cbf0 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/UpdateMain.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/UpdateMain.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
import java.io.File;
diff --git a/src/main/java/com/xceptance/xlt/report/scorecard/ValidationException.java b/src/main/java/com/xceptance/xlt/report/scorecard/ValidationException.java
index 6d1de49a1..6c6659272 100644
--- a/src/main/java/com/xceptance/xlt/report/scorecard/ValidationException.java
+++ b/src/main/java/com/xceptance/xlt/report/scorecard/ValidationException.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.scorecard;
public class ValidationException extends Exception
diff --git a/src/main/java/com/xceptance/xlt/report/util/xstream/SanitizingDomDriver.java b/src/main/java/com/xceptance/xlt/report/util/xstream/SanitizingDomDriver.java
index ea75edabb..385e1aaa4 100644
--- a/src/main/java/com/xceptance/xlt/report/util/xstream/SanitizingDomDriver.java
+++ b/src/main/java/com/xceptance/xlt/report/util/xstream/SanitizingDomDriver.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.util.xstream;
import java.io.Writer;
diff --git a/src/main/java/com/xceptance/xlt/report/util/xstream/SanitizingWriter.java b/src/main/java/com/xceptance/xlt/report/util/xstream/SanitizingWriter.java
index cda6a44df..3e5b030df 100644
--- a/src/main/java/com/xceptance/xlt/report/util/xstream/SanitizingWriter.java
+++ b/src/main/java/com/xceptance/xlt/report/util/xstream/SanitizingWriter.java
@@ -1,3 +1,18 @@
+/*
+ * Copyright (c) 2005-2024 Xceptance Software Technologies GmbH
+ *
+ * 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 com.xceptance.xlt.report.util.xstream;
import java.io.Writer;