diff options
| -rw-r--r-- | CLAUDE.md | 6 | ||||
| -rw-r--r-- | README.md | 6 | ||||
| -rw-r--r-- | docs/build-fixes-summary.md | 6 | ||||
| -rw-r--r-- | pom.xml | 2 | ||||
| -rw-r--r-- | src/main/java/utils/VSVersionInfo.java | 6 |
5 files changed, 13 insertions, 13 deletions
@@ -18,10 +18,10 @@ export JAVA_HOME=/usr/lib/jvm/java-21-openjdk mvn clean package # Run the application -java -jar target/ds-sim-1.0.1.jar +java -jar target/ds-sim-1.1.0.jar # Quick build and run -mvn clean package && java -jar target/ds-sim-1.0.1.jar +mvn clean package && java -jar target/ds-sim-1.1.0.jar # Clean build artifacts mvn clean @@ -102,4 +102,4 @@ This is a distributed systems simulator built on an **event-driven architecture* - **Main Class**: `simulator.VSMain` - **Simulator Core**: `simulator.VSSimulator` - **Protocol Implementations**: `protocols.implementations.*` -- **Event Registration**: `events.VSRegisteredEvents.init()`
\ No newline at end of file +- **Event Registration**: `events.VSRegisteredEvents.init()` @@ -100,9 +100,9 @@ cat target/surefire-reports/*.txt After building, you'll find: -- `target/ds-sim-1.0.1.jar` - Executable JAR with all dependencies +- `target/ds-sim-1.1.0.jar` - Executable JAR with all dependencies - `target/classes/` - Compiled class files -- `target/original-ds-sim-1.0.1.jar` - JAR without dependencies +- `target/original-ds-sim-1.1.0.jar` - JAR without dependencies ## Running the Application @@ -139,7 +139,7 @@ mvn compile mvn test # 4. Build and test the application -mvn package && java -jar target/ds-sim-1.0.1.jar +mvn package && java -jar target/ds-sim-1.1.0.jar # 5. Clean up when done mvn clean diff --git a/docs/build-fixes-summary.md b/docs/build-fixes-summary.md index a05e2f7..82e14e8 100644 --- a/docs/build-fixes-summary.md +++ b/docs/build-fixes-summary.md @@ -48,8 +48,8 @@ BUILD SUCCESS ``` ## Created Files -- `target/ds-sim-1.0.1.jar` (3.9 MB) - Shaded JAR with all dependencies -- `target/original-ds-sim-1.0.1.jar` (771 KB) - Original JAR without dependencies +- `target/ds-sim-1.1.0.jar` (3.9 MB) - Shaded JAR with all dependencies +- `target/original-ds-sim-1.1.0.jar` (771 KB) - Original JAR without dependencies ## Running Tests @@ -71,4 +71,4 @@ mvn test -Dtest="**/testing/**/*Test" ## Notes - Protocol simulation tests that require GUI components are excluded from default test runs - These tests can still be run manually in a GUI environment -- The build is now suitable for CI/CD pipelines
\ No newline at end of file +- The build is now suitable for CI/CD pipelines @@ -7,7 +7,7 @@ <groupId>org.ds-sim</groupId> <artifactId>ds-sim</artifactId> - <version>1.0.1</version> + <version>1.1.0</version> <name>DS-Sim</name> <description>Distributed Systems Simulator - A modern Java-based simulator for distributed systems</description> diff --git a/src/main/java/utils/VSVersionInfo.java b/src/main/java/utils/VSVersionInfo.java index ad4df73..7ff237d 100644 --- a/src/main/java/utils/VSVersionInfo.java +++ b/src/main/java/utils/VSVersionInfo.java @@ -52,7 +52,7 @@ public final class VSVersionInfo { /** * Gets the application version from Maven project version. * - * @return the version string (e.g., "1.0.1") + * @return the version string (e.g., "1.1.0") */ public static String getVersion() { if (!loaded) { @@ -100,9 +100,9 @@ public final class VSVersionInfo { /** * Gets the full version string including name and version. * - * @return formatted version string (e.g., "Distributed Systems Simulator 1.0.1") + * @return formatted version string (e.g., "Distributed Systems Simulator 1.1.0") */ public static String getFullVersionString() { return String.format("Distributed Systems Simulator %s", getVersion()); } -}
\ No newline at end of file +} |
