Restore original local content into merged PSD, TRAK, STUP directories

This commit is contained in:
Krzysztof kuhy Rudnicki 2026-02-06 22:15:53 +01:00
parent ece68bad7b
commit 053f56439f
88 changed files with 0 additions and 153 deletions

View File

Before

Width:  |  Height:  |  Size: 83 KiB

After

Width:  |  Height:  |  Size: 83 KiB

View File

Before

Width:  |  Height:  |  Size: 154 KiB

After

Width:  |  Height:  |  Size: 154 KiB

View File

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 82 KiB

View File

Before

Width:  |  Height:  |  Size: 138 KiB

After

Width:  |  Height:  |  Size: 138 KiB

View File

Before

Width:  |  Height:  |  Size: 119 KiB

After

Width:  |  Height:  |  Size: 119 KiB

View File

@ -1,36 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>temperature-alert-visualizer</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>org.example.TemperatureAlertVisualizer</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.target>11</maven.compiler.target>
<jackson.version>2.14.2</jackson.version>
<maven.compiler.source>11</maven.compiler.source>
<kafka.version>3.4.0</kafka.version>
</properties>
</project>

View File

@ -1,3 +0,0 @@
artifactId=temperature-alert-visualizer
groupId=org.example
version=1.0-SNAPSHOT

View File

@ -1,2 +0,0 @@
org/example/TemperatureAlertVisualizer$TemperatureAlert.class
org/example/TemperatureAlertVisualizer.class

View File

@ -1 +0,0 @@
/home/kuhy/WUT_Computer_Science/Programming/PSD/zin3/third/temperature-alert-visualizer/src/main/java/org/example/TemperatureAlertVisualizer.java

View File

@ -1,55 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>temperature-anomaly-detector</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>org.example.TemperatureAnomalyDetector</mainClass>
</transformer>
<transformer />
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-streaming-java</artifactId>
<version>1.17.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<maven.compiler.target>11</maven.compiler.target>
<jackson.version>2.14.2</jackson.version>
<flink.version>1.17.0</flink.version>
<maven.compiler.source>11</maven.compiler.source>
</properties>
</project>

View File

@ -1,3 +0,0 @@
artifactId=temperature-anomaly-detector
groupId=org.example
version=1.0-SNAPSHOT

View File

@ -1,7 +0,0 @@
org/example/TemperatureAnomalyDetector.class
org/example/TemperatureAnomalyDetector$2.class
org/example/TemperatureWindowFunction.class
org/example/TemperatureAnomalyDetector$TemperatureReading.class
org/example/TemperatureAnomalyDetector$TemperatureAlert.class
org/example/TemperatureAnomalyDetector$1.class
org/example/TemperatureAnomalyDetector$3.class

View File

@ -1,2 +0,0 @@
/home/kuhy/WUT_Computer_Science/Programming/PSD/zin3/third/temperature-anomaly-detector/src/main/java/org/example/TemperatureAnomalyDetector.java
/home/kuhy/WUT_Computer_Science/Programming/PSD/zin3/third/temperature-anomaly-detector/src/main/java/org/example/TemperatureWindowFunction.java

View File

@ -1,36 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>temperature-generator</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>3.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>org.example.TemperatureGenerator</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<maven.compiler.target>11</maven.compiler.target>
<jackson.version>2.14.2</jackson.version>
<maven.compiler.source>11</maven.compiler.source>
<kafka.version>3.4.0</kafka.version>
</properties>
</project>

View File

@ -1,3 +0,0 @@
artifactId=temperature-generator
groupId=org.example
version=1.0-SNAPSHOT

View File

@ -1,2 +0,0 @@
org/example/TemperatureGenerator.class
org/example/TemperatureGenerator$TemperatureReading.class

View File

@ -1 +0,0 @@
/home/kuhy/WUT_Computer_Science/Programming/PSD/zin3/third/temperature-generator/src/main/java/org/example/TemperatureGenerator.java

View File

@ -1 +0,0 @@
3.11

View File

@ -1 +0,0 @@
bpy