Skip to content

Commit

Permalink
chore: update package name and main class
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Wang <i@ryanc.cc>
  • Loading branch information
ruibaby committed Sep 7, 2023
1 parent c476ab7 commit 7836d67
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 32 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
id "run.halo.plugin.devtools" version "0.0.5"
}

group 'run.halo.starter'
group 'run.halo.appstore'
sourceCompatibility = JavaVersion.VERSION_17

repositories {
Expand Down
21 changes: 21 additions & 0 deletions src/main/java/run/halo/appstore/AppStorePlugin.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package run.halo.appstore;

import org.pf4j.PluginWrapper;
import org.springframework.stereotype.Component;
import run.halo.app.plugin.BasePlugin;

@Component
public class AppStorePlugin extends BasePlugin {

public AppStorePlugin(PluginWrapper wrapper) {
super(wrapper);
}

@Override
public void start() {
}

@Override
public void stop() {
}
}
31 changes: 0 additions & 31 deletions src/main/java/run/halo/starter/StarterPlugin.java

This file was deleted.

0 comments on commit 7836d67

Please sign in to comment.