Skip to content

Commit 7505456

Browse files
committed
split off core module
1 parent 4a17102 commit 7505456

File tree

151 files changed

+675
-182
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+675
-182
lines changed
File renamed without changes.

code-assert-core/pom.xml

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>guru.nidi</groupId>
7+
<artifactId>code-assert-parent</artifactId>
8+
<version>0.9.12-SNAPSHOT</version>
9+
</parent>
10+
11+
<artifactId>code-assert-core</artifactId>
12+
<name>${project.artifactId}</name>
13+
14+
<properties>
15+
<maven-jar.version>3.2.0</maven-jar.version>
16+
</properties>
17+
18+
<build>
19+
<plugins>
20+
<plugin>
21+
<groupId>guru.nidi</groupId>
22+
<artifactId>code-assert-maven-plugin</artifactId>
23+
<version>0.9.6</version>
24+
<executions>
25+
<execution>
26+
<goals>
27+
<goal>prepare</goal>
28+
<goal>assert</goal>
29+
</goals>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
34+
<plugin>
35+
<groupId>guru.nidi.maven.plugins</groupId>
36+
<artifactId>snippets-maven-plugin</artifactId>
37+
<executions>
38+
<execution>
39+
<phase>generate-resources</phase>
40+
<goals>
41+
<goal>snippets</goal>
42+
</goals>
43+
<configuration>
44+
<inputs>
45+
<input>
46+
src/test/java/guru/nidi/codeassert/snippets
47+
</input>
48+
</inputs>
49+
<outputs>
50+
<output>../README.md</output>
51+
</outputs>
52+
<prefix>\n```java</prefix>
53+
<postfix>```\n</postfix>
54+
</configuration>
55+
</execution>
56+
</executions>
57+
</plugin>
58+
<plugin>
59+
<groupId>org.jetbrains.kotlin</groupId>
60+
<artifactId>kotlin-maven-plugin</artifactId>
61+
<version>${kotlin.version}</version>
62+
<executions>
63+
<execution>
64+
<id>test-compile</id>
65+
<goals>
66+
<goal>test-compile</goal>
67+
</goals>
68+
<configuration>
69+
<sourceDirs>
70+
<sourceDir>src/test/kotlin</sourceDir>
71+
</sourceDirs>
72+
</configuration>
73+
</execution>
74+
</executions>
75+
</plugin>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-jar-plugin</artifactId>
79+
<version>${maven-jar.version}</version>
80+
<configuration>
81+
<archive>
82+
<manifestEntries>
83+
<Automatic-Module-Name>guru.nidi.codeassert</Automatic-Module-Name>
84+
</manifestEntries>
85+
</archive>
86+
</configuration>
87+
</plugin>
88+
</plugins>
89+
</build>
90+
91+
<dependencies>
92+
<dependency>
93+
<groupId>guru.nidi</groupId>
94+
<artifactId>graphviz-java</artifactId>
95+
<version>0.17.0</version>
96+
<optional>true</optional>
97+
</dependency>
98+
<dependency>
99+
<groupId>org.hamcrest</groupId>
100+
<artifactId>hamcrest-core</artifactId>
101+
<version>1.3</version>
102+
</dependency>
103+
<dependency>
104+
<groupId>commons-io</groupId>
105+
<artifactId>commons-io</artifactId>
106+
<version>2.7</version>
107+
</dependency>
108+
109+
<dependency>
110+
<groupId>junit</groupId>
111+
<artifactId>junit</artifactId>
112+
<version>4.12</version>
113+
<scope>provided</scope>
114+
</dependency>
115+
<dependency>
116+
<groupId>org.junit.jupiter</groupId>
117+
<artifactId>junit-jupiter-api</artifactId>
118+
<scope>provided</scope>
119+
</dependency>
120+
121+
<dependency>
122+
<groupId>org.slf4j</groupId>
123+
<artifactId>slf4j-api</artifactId>
124+
</dependency>
125+
<dependency>
126+
<groupId>org.slf4j</groupId>
127+
<artifactId>jcl-over-slf4j</artifactId>
128+
</dependency>
129+
<dependency>
130+
<groupId>org.slf4j</groupId>
131+
<artifactId>jul-to-slf4j</artifactId>
132+
</dependency>
133+
134+
<dependency>
135+
<groupId>org.slf4j</groupId>
136+
<artifactId>slf4j-simple</artifactId>
137+
<scope>test</scope>
138+
</dependency>
139+
</dependencies>
140+
</project>

0 commit comments

Comments
 (0)