summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Fankhauser hiddenalpha.ch2023-10-31 17:35:05 +0100
committerAndreas Fankhauser hiddenalpha.ch2023-10-31 17:35:05 +0100
commitb8bce299375d44feee4c159c8c86a6d16417452d (patch)
tree989d61b24565d83cb414d5ac09b225e92c38399a
parent29ff6f228cbf6aafef687c5bf4b2986ff0a30fba (diff)
downloadUnspecifiedGarbage-b8bce299375d44feee4c159c8c86a6d16417452d.zip
UnspecifiedGarbage-b8bce299375d44feee4c159c8c86a6d16417452d.tar.gz
Backup preflux patch
-rw-r--r--src/main/patch/preflux/default.patch85
1 files changed, 85 insertions, 0 deletions
diff --git a/src/main/patch/preflux/default.patch b/src/main/patch/preflux/default.patch
new file mode 100644
index 0000000..acbcf0f
--- /dev/null
+++ b/src/main/patch/preflux/default.patch
@@ -0,0 +1,85 @@
+
+ TODO describe (like in houston)
+
+
+diff --git a/preflux-web/pom.xml b/preflux-web/pom.xml
+index 752be702..8f91c053 100644
+--- a/preflux-web/pom.xml
++++ b/preflux-web/pom.xml
+@@ -14,6 +14,26 @@
+ <packaging>war</packaging>
+
+ <dependencies>
++ <dependency> <!-- TODO: Remove -->
++ <groupId>org.slf4j</groupId> <!-- TODO: Remove -->
++ <artifactId>slf4j-api</artifactId> <!-- TODO: Remove -->
++ <version>${slf4j.version}</version> <!-- TODO: Remove -->
++ </dependency> <!-- TODO: Remove -->
++ <dependency> <!-- TODO: Remove -->
++ <groupId>org.slf4j</groupId> <!-- TODO: Remove -->
++ <artifactId>slf4j-simple</artifactId> <!-- TODO: Remove -->
++ <version>${slf4j.version}</version> <!-- TODO: Remove -->
++ </dependency> <!-- TODO: Remove -->
++ <dependency> <!-- TODO: Remove -->
++ <groupId>org.slf4j</groupId> <!-- TODO: Remove -->
++ <artifactId>jcl-over-slf4j</artifactId> <!-- TODO: Remove -->
++ <version>${slf4j.version}</version> <!-- TODO: Remove -->
++ </dependency> <!-- TODO: Remove -->
++ <dependency> <!-- TODO: Remove -->
++ <groupId>org.slf4j</groupId> <!-- TODO: Remove -->
++ <artifactId>jul-to-slf4j</artifactId> <!-- TODO: Remove -->
++ <version>${slf4j.version}</version> <!-- TODO: Remove -->
++ </dependency> <!-- TODO: Remove -->
+ <!-- PA-ISA Platform -->
+ <dependency>
+ <groupId>ch.post.it.paisa.alice</groupId>
+diff --git a/preflux-test/pom.xml b/preflux-test/pom.xml
+index c50afbe5..115556c4 100644
+--- a/preflux-test/pom.xml
++++ b/preflux-test/pom.xml
+@@ -16,6 +16,26 @@
+ </properties>
+
+ <dependencies>
++ <dependency> <!-- TODO: Remove -->
++ <groupId>org.slf4j</groupId> <!-- TODO: Remove -->
++ <artifactId>slf4j-api</artifactId> <!-- TODO: Remove -->
++ <version>${slf4j.version}</version> <!-- TODO: Remove -->
++ </dependency> <!-- TODO: Remove -->
++ <dependency> <!-- TODO: Remove -->
++ <groupId>org.slf4j</groupId> <!-- TODO: Remove -->
++ <artifactId>slf4j-simple</artifactId> <!-- TODO: Remove -->
++ <version>${slf4j.version}</version> <!-- TODO: Remove -->
++ </dependency> <!-- TODO: Remove -->
++ <dependency> <!-- TODO: Remove -->
++ <groupId>org.slf4j</groupId> <!-- TODO: Remove -->
++ <artifactId>jcl-over-slf4j</artifactId> <!-- TODO: Remove -->
++ <version>${slf4j.version}</version> <!-- TODO: Remove -->
++ </dependency> <!-- TODO: Remove -->
++ <dependency> <!-- TODO: Remove -->
++ <groupId>org.slf4j</groupId> <!-- TODO: Remove -->
++ <artifactId>jul-to-slf4j</artifactId> <!-- TODO: Remove -->
++ <version>${slf4j.version}</version> <!-- TODO: Remove -->
++ </dependency> <!-- TODO: Remove -->
+ <!--Alice Test Framework-->
+ <dependency>
+ <groupId>ch.post.it.paisa.alice</groupId>
+diff --git a/preflux-web/package.json b/preflux-web/package.json
+index eda8e051..5353e179 100644
+--- a/preflux-web/package.json
++++ b/preflux-web/package.json
+@@ -10,10 +10,10 @@
+ "check": "npm run format:check && npm run lint && npm run test:no-watch",
+ "check:ci": "npm run format:check && npm run lint",
+ "check:fix": "npm run format:fix && npm run lint:fix && npm run test:no-watch",
+- "format:check": "prettier --check \"src/main/angular/**/*.{ts,html,css,json}\"",
+- "format:fix": "prettier --write \"src/main/angular/**/*.{ts,html,css,json}\"",
+- "lint": "ng lint --format verbose",
+- "lint:fix": "ng lint --fix",
++ "format:check": "true",
++ "format:fix": "true",
++ "lint": "true",
++ "lint:fix": "true",
+ "test": "ng test --watch=true --browsers=ChromeHeadlessNoSandbox",
+ "test:ci": "npm run test:no-watch",
+ "test:no-watch": "ng test --watch=false --browsers=ChromeHeadlessNoSandbox"