summaryrefslogtreecommitdiff
path: root/firmal/pom.xml
blob: aa1e601bbbfafa9728bff0ac8c00c620d03af7f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<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>com.ashardalon</groupId>
	<artifactId>firmal</artifactId>
	<version>0.0.2-SNAPSHOT</version>
	<name>firmal</name>
	<description>Local browser for directories of HTML files. Created originally for browsing downloaded tumblr blogs</description>
	<dependencies>
		<dependency>
			<groupId>com.ashardalon</groupId>
			<artifactId>BJC-Utils2</artifactId>
			<version>2.0-SNAPSHOT</version>
		</dependency>
	</dependencies>
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.8.0</version>
				<configuration>
					<source>11</source>
					<target>11</target>
				</configuration>
			</plugin>
		</plugins>
	</build>
</project>