File tree Expand file tree Collapse file tree 3 files changed +64
-0
lines changed Expand file tree Collapse file tree 3 files changed +64
-0
lines changed Original file line number Diff line number Diff line change @@ -164,3 +164,5 @@ fabric.properties
164
164
# Android studio 3.1+ serialized cache file
165
165
.idea /caches /build_file_checksums.ser
166
166
.idea /**
167
+
168
+ target
Original file line number Diff line number Diff line change
1
+
2
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
3
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+
7
+ <groupId >openpitools</groupId >
8
+ <artifactId >openapi-generator-patched</artifactId >
9
+ <packaging >jar</packaging >
10
+ <version >1.0.8</version >
11
+
12
+ <build >
13
+ <plugins >
14
+ <plugin >
15
+ <groupId >org.apache.maven.plugins</groupId >
16
+ <artifactId >maven-shade-plugin</artifactId >
17
+ <version >3.2.4</version >
18
+ <executions >
19
+ <execution >
20
+ <goals >
21
+ <goal >shade</goal >
22
+ </goals >
23
+ <configuration >
24
+ <transformers >
25
+ <transformer implementation =" org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
26
+ <transformer implementation =" org.apache.maven.plugins.shade.resource.ManifestResourceTransformer" >
27
+ <mainClass >org.openapitools.codegen.OpenAPIGenerator</mainClass >
28
+ </transformer >
29
+ </transformers >
30
+ <filters >
31
+ <filter >
32
+ <artifact >com.bluetrainsoftware.maven:openapi-dart-generator</artifact >
33
+ <excludes >
34
+ <exclude >META-INF/MANIFEST.MF</exclude >
35
+ </excludes >
36
+ </filter >
37
+ </filters >
38
+ <outputFile >${basedir} /lib/openapi-generator.jar</outputFile >
39
+ </configuration >
40
+ </execution >
41
+ </executions >
42
+ </plugin >
43
+ </plugins >
44
+ </build >
45
+
46
+
47
+ <dependencies >
48
+ <dependency >
49
+ <groupId >org.openapitools</groupId >
50
+ <artifactId >openapi-generator-cli</artifactId >
51
+ <version >4.3.1</version >
52
+ </dependency >
53
+
54
+ <dependency >
55
+ <groupId >com.bluetrainsoftware.maven</groupId >
56
+ <artifactId >openapi-dart-generator</artifactId >
57
+ <version >3.6</version >
58
+ </dependency >
59
+ </dependencies >
60
+ </project >
61
+
62
+
You can’t perform that action at this time.
0 commit comments