| Group ID: |
tech.xigam |
| Artifact ID: |
Express.Java |
| Version: |
1.2.2 |
| Last modified: |
18.04.2022 03:40 |
| Packaging: |
jar |
| Name: |
Express.Java |
| Description: |
My **basic** recreation of Express.JS in Java. |
| URL: |
https://github.com/KingRainbow44/Express.Java |
|
|
| Size: |
10.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/tech/xigam/Express.Java/1.2.2/Express.Java-1.2.2.jar |
| POM: |
Show
hide
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>tech.xigam</groupId>
<artifactId>Express.Java</artifactId>
<version>1.2.2</version>
<!--
Changelog:
1.0.0 - Initial release.
1.1.0 - Add support for other HTTP servers & support SSL by default.
1.2.0 - Add support for more response functionality.
1.2.1 - Fix bug with responses.
1.2.2 - Add support for an all method.
-->
<name>Express.Java</name>
<description>My **basic** recreation of Express.JS in Java.</description>
<url>https://github.com/KingRainbow44/Express.Java</url>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<developers>
<developer>
<id>Magix</id>
<name>Kobe Do</name>
<email>lolmagixd@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:KingRainbow44/Express.Java.git</connection>
<developerConnection>scm:git:ssh://github.com:KingRainbow44/Express.Java.git</developerConnection>
<url>https://github.com/KingRainbow44/Express.Java/tree/main</url>
</scm>
<build>
<plugins>
<!-- Maven Source Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven Javadoc Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Maven Surefire Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>ci-cd</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<dependencies>
<!-- lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
<scope>compile</scope>
</dependency>
</dependencies>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
|
| Maven: |
<dependency>
<groupId>tech.xigam</groupId>
<artifactId>Express.Java</artifactId>
<version>1.2.2</version>
</dependency>
|
| Gradle: |
tech.xigam:Express.Java:1.2.2 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
lombok-1.18.22.jar
in org/projectlombok/lombok/1.18.22
|
| Dependency Graph: |
Show
Less
More
|