Skip to content

Commit f123b56

Browse files
committed
rename module jooby-hotreload to jooby-run fix #410
1 parent 4aec37c commit f123b56

10 files changed

Lines changed: 6 additions & 9 deletions

File tree

jooby-bom/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
</dependency>
153153
<dependency>
154154
<groupId>${project.groupId}</groupId>
155-
<artifactId>jooby-hotreload</artifactId>
155+
<artifactId>jooby-run</artifactId>
156156
<version>${jooby.version}</version>
157157
</dependency>
158158
<dependency>

jooby-maven-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<dependency>
3131
<groupId>org.jooby</groupId>
32-
<artifactId>jooby-hotreload</artifactId>
32+
<artifactId>jooby-run</artifactId>
3333
<version>${project.version}</version>
3434
</dependency>
3535

jooby-maven-plugin/src/main/java/org/jooby/JoobyMojo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public void execute() throws MojoExecutionException, MojoFailureException {
146146

147147
Set<File> classpath = new LinkedHashSet<>();
148148

149-
File hotreload = extra(pluginArtifacts, "jooby-hotreload").get();
149+
File hotreload = extra(pluginArtifacts, "jooby-run").get();
150150
File jbossModules = extra(pluginArtifacts, "jboss-modules").get();
151151
classpath.add(hotreload);
152152
classpath.add(jbossModules);
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
compile on the fly?
2-
http://search.maven.org/#artifactdetails%7Corg.eclipse.jdt.core.compiler%7Cecj%7C4.4.2%7Cjar
3-
41
how do I detect a hotswap? and only then bounce the app?
52

63
ideal implementation?
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010

1111
<modelVersion>4.0.0</modelVersion>
12-
<artifactId>jooby-hotreload</artifactId>
12+
<artifactId>jooby-run</artifactId>
1313

1414
<name>hot reload module</name>
1515
<build>

jooby-hotreload/src/main/java/org/jooby/hotreload/AppModule.java renamed to jooby-run/src/main/java/org/jooby/hotreload/AppModule.java

File renamed without changes.

jooby-hotreload/src/main/java/org/jooby/hotreload/AppModuleLoader.java renamed to jooby-run/src/main/java/org/jooby/hotreload/AppModuleLoader.java

File renamed without changes.

jooby-hotreload/src/main/java/org/jooby/hotreload/Watcher.java renamed to jooby-run/src/main/java/org/jooby/hotreload/Watcher.java

File renamed without changes.

jooby-hotreload/src/main/resources/org/jooby/hotreload/pkgs renamed to jooby-run/src/main/resources/org/jooby/hotreload/pkgs

File renamed without changes.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<module>jooby-netty</module>
3636
<module>jooby-quartz</module>
3737
<module>jooby-jdbi</module>
38-
<module>jooby-hotreload</module>
38+
<module>jooby-run</module>
3939
<module>jooby-jedis</module>
4040
<module>jooby-mongodb</module>
4141
<module>jooby-mongodb-rx</module>
@@ -269,7 +269,7 @@
269269

270270
<dependency>
271271
<groupId>org.jooby</groupId>
272-
<artifactId>jooby-hotreload</artifactId>
272+
<artifactId>jooby-run</artifactId>
273273
<version>${jooby.version}</version>
274274
</dependency>
275275

0 commit comments

Comments
 (0)