n2o-access
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.n2oapp.framework</groupId> <artifactId>n2o-access</artifactId> <version>7.28.7</version> </dependency>
<?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> <artifactId>n2o-access</artifactId> <name>n2o-access</name> <packaging>jar</packaging> <parent> <groupId>net.n2oapp.framework</groupId> <artifactId>n2o</artifactId> <version>7.28.7</version> <relativePath>..</relativePath> </parent> <dependencies> <!--n2o dependencies--> <dependency> <groupId>net.n2oapp.framework</groupId> <artifactId>n2o-engine</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>net.n2oapp.framework</groupId> <artifactId>n2o-config</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>net.n2oapp.criteria</groupId> <artifactId>criteria-dataset</artifactId> </dependency> <!--other dependencies--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>provided</scope> </dependency> <!-- spring --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> </dependency> <!--для тестов--> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <scope>test</scope> </dependency> </dependencies> </project>