| Group ID: |
io.github.ashcode002x |
| Artifact ID: |
java-orm-ashcode |
| Version: |
1.0.0 |
| Last modified: |
04.04.2026 09:49 |
| Packaging: |
jar |
| Name: |
java-orm-ashcode |
| Description: |
Lightweight Java ORM |
| URL: |
https://github.com/ashcode002x/java-orm-ashcode |
| Vendor: |
Aashish Kumar |
|
|
| Size: |
51.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/io/github/ashcode002x/java-orm-ashcode/1.0.0/java-orm-ashcode-1.0.0.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.ashcode002x</groupId>
<artifactId>java-orm-ashcode</artifactId>
<version>1.0.0</version>
<name>java-orm-ashcode</name>
<description>Lightweight Java ORM</description>
<url>https://github.com/ashcode002x/java-orm-ashcode</url>
<packaging>jar</packaging>
<licenses>
<license>
<name>MIT</name>
<url>https://opensource.org/licenses/MIT</url>
</license>
</licenses>
<organization>
<name>Aashish Kumar</name>
</organization>
<developers>
<developer>
<id>aashish</id>
<name>Aashish Kumar</name>
<email>aashish836863@gmail.com</email>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/ashcode002x/java-orm-ashcode.git</connection>
<developerConnection>scm:git:ssh://github.com:ashcode002x/java-orm-ashcode.git</developerConnection>
<url>https://github.com/ashcode002x/java-orm-ashcode</url>
</scm>
<properties>
<java.version>21</java.version>
<maven.compiler.release>${java.version}</maven.compiler.release>
<junit.jupiter.version>5.12.2</junit.jupiter.version>
</properties>
<dependencies>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>2.3.232</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.14.0</version>
<configuration>
<release>21</release>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<manifestEntries>
<Built-By>Aashish</Built-By>
</manifestEntries>
</archive>
</configuration>
</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</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals><goal>jar</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|
| Maven: |
<dependency>
<groupId>io.github.ashcode002x</groupId>
<artifactId>java-orm-ashcode</artifactId>
<version>1.0.0</version>
</dependency>
|
| Gradle: |
io.github.ashcode002x:java-orm-ashcode:1.0.0 |
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
h2-2.3.232.jar
in com/h2database/h2/2.3.232
-
[JAR]
junit-jupiter-${junit.jupiter.version}.jar
in org/junit/jupiter/junit-jupiter/${junit.jupiter.version}
|
| Dependency Graph: |
Show
Less
More
|