File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1+ package browser ;
2+
13/**
24 * File: Browser.java
35 * Author: Vadym Kykalo (https://www.linkedin.com/in/vadym-kykalo/)
You can’t perform that action at this time.
0 commit comments