logick-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.niraj2036</groupId>
<artifactId>logick-java</artifactId>
<version>1.1.2</version>
</dependency><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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.niraj2036</groupId>
<artifactId>logick-java</artifactId>
<version>1.1.2</version>
<packaging>jar</packaging>
<name>LogicK Java SDK</name>
<description>LOGICK is an cybersecurity tool that checks application logs to find Log4j attack attempts.
It is designed mainly for Indian SMEs and government systems that still use old Java applications.
The system reads logs in real time and looks for suspicious or hidden exploit patterns.</description>
<url>https://github.com/Team-INSPIRE2226/LogicK-sdk</url>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<id>niraj</id>
<name>Niraj Chaudhari</name>
<email>nirajchaudharip@gmail.com</email>
</developer>
<developer>
<id>tejas</id>
<name>Tejas Gadge</name>
<email>tejasgadge903@gmail.com</email>
</developer>
<developer>
<id>anisha</id>
<name>Anisha Shankar</name>
<email>anis191004@gmail.com</email>
</developer>
<developer>
<id>ganesh</id>
<name>Ganesh Shelar</name>
<email>ganeshshelar0010@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/Team-INSPIRE2226/LogicK-sdk</connection>
<developerConnection>scm:git:ssh://github.com/Team-INSPIRE2226/LogicK-sdk</developerConnection>
<url>https://github.com/Team-INSPIRE2226/LogicK-sdk</url>
</scm>
<properties>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<!-- JSON -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.22.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>4.0.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.3.31</version>
<scope>provided</scope>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>central</id>
<name>Central Portal</name>
<url>https://central.sonatype.com/api/v1/publisher/maven</url>
</repository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.4.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>
<!-- Sources JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc JAR -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>