File tree Expand file tree Collapse file tree 3 files changed +46
-40
lines changed Expand file tree Collapse file tree 3 files changed +46
-40
lines changed Original file line number Diff line number Diff line change 100
100
101
101
<profiles >
102
102
103
+ <profile >
104
+ <id >singlepackage</id >
105
+ <build >
106
+ <plugins >
107
+ <plugin >
108
+ <groupId >org.apache.maven.plugins</groupId >
109
+ <artifactId >maven-jar-plugin</artifactId >
110
+ <version >${mvn-jar-version} </version >
111
+ <configuration >
112
+ <archive >
113
+ <manifest >
114
+ <addClasspath >true</addClasspath >
115
+ <mainClass >DaoGen</mainClass >
116
+ </manifest >
117
+ </archive >
118
+ </configuration >
119
+ </plugin >
120
+ <plugin >
121
+ <groupId >org.apache.maven.plugins</groupId >
122
+ <artifactId >maven-shade-plugin</artifactId >
123
+ <version >${mvn-shade-version} </version >
124
+ <executions >
125
+ <execution >
126
+ <phase >package</phase >
127
+ <goals >
128
+ <goal >shade</goal >
129
+ </goals >
130
+ </execution >
131
+ </executions >
132
+ <configuration >
133
+ <finalName >dist-${project.artifactId} -${project.version} </finalName >
134
+ </configuration >
135
+ </plugin >
136
+ </plugins >
137
+ </build >
138
+ </profile >
139
+
103
140
<profile >
104
141
<id >full</id >
105
142
<build >
Original file line number Diff line number Diff line change 1
- package org .fugerit .java .daogen .base .tool ;
2
-
3
1
import java .util .Properties ;
4
2
5
3
import org .fugerit .java .core .cli .ArgUtils ;
4
+ import org .fugerit .java .daogen .base .tool .DaoGenToolHandler ;
6
5
import org .slf4j .Logger ;
7
6
import org .slf4j .LoggerFactory ;
8
7
9
- public class DaoGenTool {
8
+ /**
9
+ *
10
+ *
11
+ * @author fugerit79
12
+ *
13
+ */
14
+ public class DaoGen {
10
15
11
- private static final Logger logger = LoggerFactory .getLogger ( DaoGenTool .class );
16
+ private static final Logger logger = LoggerFactory .getLogger ( DaoGen .class );
12
17
13
18
public static void main ( String [] args ) {
14
19
int exit = 0 ;
Original file line number Diff line number Diff line change 305
305
</build >
306
306
</profile >
307
307
308
- <profile >
309
- <id >singlepackage</id >
310
- <build >
311
- <plugins >
312
- <plugin >
313
- <groupId >org.apache.maven.plugins</groupId >
314
- <artifactId >maven-jar-plugin</artifactId >
315
- <version >${mvn-jar-version} </version >
316
- <configuration >
317
- <archive >
318
- <manifest >
319
- <addClasspath >true</addClasspath >
320
- <mainClass >org.fugerit.java.tool.Launcher</mainClass >
321
- </manifest >
322
- </archive >
323
- </configuration >
324
- </plugin >
325
- <plugin >
326
- <groupId >org.apache.maven.plugins</groupId >
327
- <artifactId >maven-shade-plugin</artifactId >
328
- <version >${mvn-shade-version} </version >
329
- <executions >
330
- <execution >
331
- <phase >package</phase >
332
- <goals >
333
- <goal >shade</goal >
334
- </goals >
335
- </execution >
336
- </executions >
337
- <configuration >
338
- <finalName >dist-${project.artifactId} -${project.version} </finalName >
339
- </configuration >
340
- </plugin >
341
- </plugins >
342
- </build >
343
- </profile >
344
308
</profiles >
345
309
346
310
</project >
You can’t perform that action at this time.
0 commit comments