Skip to content

Commit 1055c51

Browse files
author
vkykalo
committed
add pom
1 parent 1e7aa1f commit 1055c51

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

pom.xml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>org.springframework</groupId>
6+
<artifactId>vkykalo-browser-maven</artifactId>
7+
<packaging>jar</packaging>
8+
<version>0.1.0</version>
9+
10+
<build>
11+
<plugins>
12+
<plugin>
13+
<groupId>org.apache.maven.plugins</groupId>
14+
<artifactId>maven-shade-plugin</artifactId>
15+
<version>2.1</version>
16+
<executions>
17+
<execution>
18+
<phase>package</phase>
19+
<goals>
20+
<goal>shade</goal>
21+
</goals>
22+
<configuration>
23+
<transformers>
24+
<transformer
25+
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
26+
<mainClass>browser.Browser</mainClass>
27+
</transformer>
28+
</transformers>
29+
</configuration>
30+
</execution>
31+
</executions>
32+
</plugin>
33+
</plugins>
34+
</build>
35+
</project>

Browser.java renamed to src/main/java/browser/Browser.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
package browser;
2+
13
/**
24
* File: Browser.java
35
* Author: Vadym Kykalo (https://www.linkedin.com/in/vadym-kykalo/)

0 commit comments

Comments
 (0)