Skip to content

Commit

Permalink
Update manual
Browse files Browse the repository at this point in the history
  • Loading branch information
jsteyn committed Nov 8, 2023
1 parent f4dc997 commit c6efbbb
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 3 deletions.
4 changes: 2 additions & 2 deletions UserManual.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ You will also need to download jws.jar or build it from this repository.

You can run the program from the command line or, if your file associations are set
correctly, you should be able to run it from a File Explorer by double clicking on
the jwc.jar file.
the jws.jar file.

To run the program from the command line:
- Navigate to the directory where your save jws.jar and type:
- `java -cp jwc.jar com.jannetta.workshopscheduler.Main`
- `java -cp jws.jar com.jannetta.workshopscheduler.Main`
- The first time the program is executed, it will create a sub-directory called `.workshopscheduler` in the user's home directory. A file called `system.properties` will be created in the `.workshopscheduler` directory.

A splash screen should open:
Expand Down
49 changes: 48 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,58 @@
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
<finalName>jws_v1.1</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>default-jar</id>
<phase>none</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<finalName>jws_v1.1</finalName>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<finalName>jws_v1.1</finalName>
<appendAssemblyId>false</appendAssemblyId>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.jannetta.workshopscheduler.Main</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<!-- bind to the packaging phase -->
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.6</version>
<version>2.11.0</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down

0 comments on commit c6efbbb

Please sign in to comment.