Skip to content

Commit

Permalink
Merge branch 'feature/latest' of https://github.com/subhra74/snowflake
Browse files Browse the repository at this point in the history
…into feature/latest
  • Loading branch information
subhra74 committed Dec 20, 2023
2 parents b937cb8 + a12518a commit 4a4044f
Show file tree
Hide file tree
Showing 225 changed files with 17,319 additions and 978 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ muon-jediterm/target/surefire-reports/TEST-org.muon.jediterm.AppTest.xml
muon-main/target/maven-archiver/pom.properties
muon-main/target/surefire-reports/muon.AppTest.txt
muon-main/target/surefire-reports/TEST-muon.AppTest.xml
app/target/surefire-reports/*
95 changes: 88 additions & 7 deletions app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,23 @@
<artifactId>app</artifactId>
<packaging>jar</packaging>

<name>muon-main</name>
<version>1.0.1</version>
<name>app</name>
<url>http://maven.apache.org</url>

<repositories>
<repository>
<id>local-maven-repo</id>
<url>file:///${project.basedir}/../local-maven-repo</url>
</repository>
</repositories>

<properties>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>muon-jediterm</groupId>
<artifactId>muon-jediterm</artifactId>
<version>0.0.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down Expand Up @@ -57,6 +58,86 @@
<scope>compile</scope>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.10.1</version>
<scope>compile</scope>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.sshd/sshd-core -->
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-core</artifactId>
<version>2.10.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.sshd/sshd-sftp -->
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-sftp</artifactId>
<version>2.10.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.sshd/sshd-common -->
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-common</artifactId>
<version>2.10.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.sshd/sshd-scp -->
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-scp</artifactId>
<version>2.10.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.sshd/sshd-putty -->
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-putty</artifactId>
<version>2.10.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.sshd/sshd-openpgp -->
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-openpgp</artifactId>
<version>2.10.0</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.apache.sshd/sshd-contrib -->
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-contrib</artifactId>
<version>2.10.0</version>
</dependency>
<!-- Dependency from local maven repo -->
<dependency>
<groupId>org.jetbrains.jediterm</groupId>
<artifactId>jediterm-core</artifactId>
<version>3.26-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.jetbrains.jediterm</groupId>
<artifactId>jediterm-ui</artifactId>
<version>3.26-SNAPSHOT</version>
</dependency>

<!-- Dependencies for jediterm -->
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.jetbrains/annotations -->
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>20.1.0</version>
</dependency>

</dependencies>

<build>
Expand Down
Loading

0 comments on commit 4a4044f

Please sign in to comment.