• ■ ■ ■ ■
    commons-bootstrap/pom.xml
    skipped 3 lines
    4 4   <parent>
    5 5   <groupId>io.onedev</groupId>
    6 6   <artifactId>commons</artifactId>
    7  - <version>2.0.16</version>
     7 + <version>2.0.17</version>
    8 8   </parent>
    9 9   <artifactId>commons-bootstrap</artifactId>
    10 10  
    skipped 49 lines
  • ■ ■ ■ ■ ■ ■
    commons-bootstrap/src/main/java/io/onedev/commons/bootstrap/Bootstrap.java
    skipped 332 lines
    333 333   return new File(installDir, "boot");
    334 334   }
    335 335  
    336  - public static File getStatusDir() {
    337  - return new File(installDir, "status");
    338  - }
    339  -
    340  - public static boolean isServerRunning(File installDir) {
    341  - // status directory may contain multiple pid files, for instance,
    342  - // appname.pid, appname_backup.pid, etc. We only check for appname.pid
    343  - // here and assumes that appname does not contain underscore
    344  - for (File file: new File(installDir, "status").listFiles()) {
    345  - if (file.getName().endsWith(".pid") && !file.getName().contains("_"))
    346  - return true;
    347  - }
    348  - return false;
    349  - }
    350  -
    351 336   public static File getLibDir() {
    352 337   return new File(installDir, "lib");
    353 338   }
    skipped 91 lines
  • ■ ■ ■ ■
    commons-codeassist/pom.xml
    skipped 4 lines
    5 5   <parent>
    6 6   <groupId>io.onedev</groupId>
    7 7   <artifactId>commons</artifactId>
    8  - <version>2.0.16</version>
     8 + <version>2.0.17</version>
    9 9   </parent>
    10 10   <build>
    11 11   <plugins>
    skipped 52 lines
  • ■ ■ ■ ■
    commons-jsymbol/pom.xml
    skipped 3 lines
    4 4   <parent>
    5 5   <groupId>io.onedev</groupId>
    6 6   <artifactId>commons</artifactId>
    7  - <version>2.0.16</version>
     7 + <version>2.0.17</version>
    8 8   </parent>
    9 9   <artifactId>commons-jsymbol</artifactId>
    10 10   <build>
    skipped 128 lines
  • ■ ■ ■ ■
    commons-jsyntax/pom.xml
    skipped 3 lines
    4 4   <parent>
    5 5   <groupId>io.onedev</groupId>
    6 6   <artifactId>commons</artifactId>
    7  - <version>2.0.16</version>
     7 + <version>2.0.17</version>
    8 8   </parent>
    9 9   <artifactId>commons-jsyntax</artifactId>
    10 10   <dependencies>
    skipped 26 lines
  • ■ ■ ■ ■
    commons-loader/pom.xml
    skipped 3 lines
    4 4   <parent>
    5 5   <groupId>io.onedev</groupId>
    6 6   <artifactId>commons</artifactId>
    7  - <version>2.0.16</version>
     7 + <version>2.0.17</version>
    8 8   </parent>
    9 9   <artifactId>commons-loader</artifactId>
    10 10  
    skipped 43 lines
  • ■ ■ ■ ■
    commons-utils/pom.xml
    skipped 4 lines
    5 5   <parent>
    6 6   <groupId>io.onedev</groupId>
    7 7   <artifactId>commons</artifactId>
    8  - <version>2.0.16</version>
     8 + <version>2.0.17</version>
    9 9   </parent>
    10 10   <artifactId>commons-utils</artifactId>
    11 11   <dependencies>
    skipped 64 lines
  • ■ ■ ■ ■
    pom.xml
    skipped 8 lines
    9 9   <version>1.0.5</version>
    10 10   </parent>
    11 11   <artifactId>commons</artifactId>
    12  - <version>2.0.16</version>
     12 + <version>2.0.17</version>
    13 13   <packaging>pom</packaging>
    14 14   <modules>
    15 15   <module>commons-utils</module>
    skipped 285 lines
Please wait...
Page is in error, reload to recover