Skip to content

Commit

Permalink
fixing broken org.webjars.npm.mobile-drag-drop dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jflamy committed Oct 6, 2022
1 parent 263857f commit db04cf1
Show file tree
Hide file tree
Showing 20 changed files with 289 additions and 82 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ hs_err_pid*
database/owlcms.mv.db
/.flattened-pom.xml
/database/
/cp.txt
1 change: 1 addition & 0 deletions installtools/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target/
/cp.txt
13 changes: 0 additions & 13 deletions owlcms-docker/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,5 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
1 change: 1 addition & 0 deletions owlcms-docker/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/.flattened-pom.xml
/target/
/cp.txt
13 changes: 0 additions & 13 deletions owlcms-windows/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,5 @@
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
1 change: 1 addition & 0 deletions owlcms-windows/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/target/
/.flattened-pom.xml
/cp.txt
13 changes: 0 additions & 13 deletions owlcms/.classpath
Original file line number Diff line number Diff line change
@@ -1,23 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="test" value="true"/>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
<attributes>
<attribute name="test" value="true"/>
Expand Down
1 change: 1 addition & 0 deletions owlcms/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@

/webpack.generated.js
/package-lock.json
/cp.txt
48 changes: 47 additions & 1 deletion owlcms/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
<groupId>com.vaadin</groupId>
<artifactId>vaadin-core</artifactId>
<exclusions>
<exclusion>
<groupId>com.vaadin</groupId>
<artifactId>flow-dnd</artifactId>
</exclusion>
<!-- Webjars are only needed when running in Vaadin 14 compatibility mode -->
<exclusion>
<groupId>com.vaadin.webjar</groupId>
Expand Down Expand Up @@ -268,6 +272,44 @@
<version>1.2.5</version>
</dependency>

<!-- web server -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-plus</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-continuation</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
<version>${jetty.version}</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>javax-websocket-server-impl</artifactId>
<version>${jetty.version}</version>
</dependency>

<!-- temporary files -->
<dependency>
<groupId>com.google.jimfs</groupId>
<artifactId>jimfs</artifactId>
<version>1.2</version>
</dependency>

</dependencies>

<build>
Expand Down Expand Up @@ -383,14 +425,14 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>default-cli</id>
<goals>
<goal>java</goal>
</goals>
<configuration>
<skip>false</skip>
<mainClass>app.owlcms.Main</mainClass>
<systemProperties>
<systemProperty>
Expand All @@ -414,6 +456,7 @@
<goal>java</goal>
</goals>
<configuration>
<skip>false</skip>
<mainClass>app.owlcms.Main</mainClass>
<systemProperties>
<systemProperty>
Expand Down Expand Up @@ -464,6 +507,7 @@
<goal>java</goal>
</goals>
<configuration>
<skip>false</skip>
<mainClass>app.owlcms.Main</mainClass>
<systemProperties>
<systemProperty>
Expand Down Expand Up @@ -491,6 +535,7 @@
<goal>java</goal>
</goals>
<configuration>
<skip>false</skip>
<mainClass>app.owlcms.Main</mainClass>
<systemProperties>
<systemProperty>
Expand Down Expand Up @@ -518,6 +563,7 @@
<goal>java</goal>
</goals>
<configuration>
<skip>false</skip>
<mainClass>app.owlcms.Main</mainClass>
<systemProperties>
<systemProperty>
Expand Down
199 changes: 199 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
{
"name": "no-name",
"license": "UNLICENSED",
"dependencies": {
"@polymer/app-layout": "3.1.0",
"@polymer/iron-a11y-announcer": "3.0.2",
"@polymer/iron-a11y-keys-behavior": "3.0.1",
"@polymer/iron-collapse": "3.0.1",
"@polymer/iron-fit-behavior": "3.0.2",
"@polymer/iron-flex-layout": "3.0.1",
"@polymer/iron-icon": "3.0.1",
"@polymer/iron-icons": "v3.0.1",
"@polymer/iron-iconset-svg": "3.0.1",
"@polymer/iron-list": "3.1.0",
"@polymer/iron-media-query": "3.0.1",
"@polymer/iron-meta": "3.0.1",
"@polymer/iron-overlay-behavior": "^3.0.2",
"@polymer/iron-resizable-behavior": "3.0.1",
"@polymer/iron-scroll-target-behavior": "3.0.1",
"@polymer/paper-badge": "3.0.1",
"@polymer/paper-ripple": "3.0.1",
"@polymer/paper-tabs": "3.1.0",
"@polymer/polymer": "3.2.0",
"@vaadin-component-factory/vcf-enhanced-dialog": "1.0.7",
"@vaadin/vaadin-accordion": "1.2.0",
"@vaadin/vaadin-app-layout": "2.2.0",
"@vaadin/vaadin-avatar": "1.0.4",
"@vaadin/vaadin-board": "2.2.0",
"@vaadin/vaadin-button": "2.4.0",
"@vaadin/vaadin-charts": "6.3.3",
"@vaadin/vaadin-checkbox": "2.5.1",
"@vaadin/vaadin-combo-box": "5.4.12",
"@vaadin/vaadin-confirm-dialog": "1.3.0",
"@vaadin/vaadin-context-menu": "4.6.0",
"@vaadin/vaadin-control-state-mixin": "2.2.6",
"@vaadin/vaadin-cookie-consent": "1.2.0",
"@vaadin/vaadin-core-shrinkwrap": "14.8.10",
"@vaadin/vaadin-crud": "1.3.1",
"@vaadin/vaadin-custom-field": "1.3.1",
"@vaadin/vaadin-date-picker": "4.4.2",
"@vaadin/vaadin-date-time-picker": "1.4.0",
"@vaadin/vaadin-details": "1.2.1",
"@vaadin/vaadin-development-mode-detector": "2.0.5",
"@vaadin/vaadin-dialog": "2.6.0",
"@vaadin/vaadin-element-mixin": "2.4.2",
"@vaadin/vaadin-form-layout": "2.3.0",
"@vaadin/vaadin-grid": "5.9.5",
"@vaadin/vaadin-grid-pro": "2.3.0",
"@vaadin/vaadin-icons": "4.3.2",
"@vaadin/vaadin-item": "2.3.0",
"@vaadin/vaadin-list-box": "1.4.0",
"@vaadin/vaadin-list-mixin": "2.5.1",
"@vaadin/vaadin-login": "1.2.0",
"@vaadin/vaadin-lumo-styles": "1.6.1",
"@vaadin/vaadin-material-styles": "1.3.2",
"@vaadin/vaadin-menu-bar": "1.3.0",
"@vaadin/vaadin-messages": "1.0.2",
"@vaadin/vaadin-notification": "1.6.2",
"@vaadin/vaadin-ordered-layout": "1.4.0",
"@vaadin/vaadin-overlay": "3.5.1",
"@vaadin/vaadin-progress-bar": "1.3.0",
"@vaadin/vaadin-radio-button": "1.5.4",
"@vaadin/vaadin-rich-text-editor": "1.3.1",
"@vaadin/vaadin-select": "2.4.3",
"@vaadin/vaadin-split-layout": "4.3.1",
"@vaadin/vaadin-tabs": "3.2.0",
"@vaadin/vaadin-text-field": "2.9.2",
"@vaadin/vaadin-themable-mixin": "1.6.2",
"@vaadin/vaadin-time-picker": "2.4.0",
"@vaadin/vaadin-upload": "4.4.3",
"@vaadin/vaadin-usage-statistics": "2.1.2",
"@webcomponents/shadycss": "1.8.0",
"@webcomponents/webcomponentsjs": "^2.2.10",
"construct-style-sheets-polyfill": "3.0.4",
"element-match-media": "0.0.3",
"lit-element": "2.5.1",
"lit-html": "1.4.1",
"multiselect-combo-box": "2.4.2"
},
"devDependencies": {
"babel-loader": "8.2.2",
"chokidar": "^3.5.0",
"compression-webpack-plugin": "4.0.1",
"copy-webpack-plugin": "5.1.2",
"css-loader": "4.2.1",
"extra-watch-webpack-plugin": "1.0.3",
"extract-loader": "5.1.0",
"file-loader": "6.1.0",
"html-webpack-plugin": "4.5.2",
"lit-css-loader": "0.0.4",
"raw-loader": "3.1.0",
"ts-loader": "8.0.12",
"typescript": "4.0.3",
"webpack": "4.42.0",
"webpack-babel-multi-target-plugin": "2.5.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.2.2"
},
"vaadin": {
"dependencies": {
"@polymer/app-layout": "3.1.0",
"@polymer/iron-a11y-announcer": "3.0.2",
"@polymer/iron-a11y-keys-behavior": "3.0.1",
"@polymer/iron-collapse": "3.0.1",
"@polymer/iron-fit-behavior": "3.0.2",
"@polymer/iron-flex-layout": "3.0.1",
"@polymer/iron-icon": "3.0.1",
"@polymer/iron-icons": "v3.0.1",
"@polymer/iron-iconset-svg": "3.0.1",
"@polymer/iron-list": "3.1.0",
"@polymer/iron-media-query": "3.0.1",
"@polymer/iron-meta": "3.0.1",
"@polymer/iron-overlay-behavior": "^3.0.2",
"@polymer/iron-resizable-behavior": "3.0.1",
"@polymer/iron-scroll-target-behavior": "3.0.1",
"@polymer/paper-badge": "3.0.1",
"@polymer/paper-ripple": "3.0.1",
"@polymer/paper-tabs": "3.1.0",
"@polymer/polymer": "3.2.0",
"@vaadin-component-factory/vcf-enhanced-dialog": "1.0.7",
"@vaadin/vaadin-accordion": "1.2.0",
"@vaadin/vaadin-app-layout": "2.2.0",
"@vaadin/vaadin-avatar": "1.0.4",
"@vaadin/vaadin-board": "2.2.0",
"@vaadin/vaadin-button": "2.4.0",
"@vaadin/vaadin-charts": "6.3.3",
"@vaadin/vaadin-checkbox": "2.5.1",
"@vaadin/vaadin-combo-box": "5.4.12",
"@vaadin/vaadin-confirm-dialog": "1.3.0",
"@vaadin/vaadin-context-menu": "4.6.0",
"@vaadin/vaadin-control-state-mixin": "2.2.6",
"@vaadin/vaadin-cookie-consent": "1.2.0",
"@vaadin/vaadin-core-shrinkwrap": "14.8.10",
"@vaadin/vaadin-crud": "1.3.1",
"@vaadin/vaadin-custom-field": "1.3.1",
"@vaadin/vaadin-date-picker": "4.4.2",
"@vaadin/vaadin-date-time-picker": "1.4.0",
"@vaadin/vaadin-details": "1.2.1",
"@vaadin/vaadin-development-mode-detector": "2.0.5",
"@vaadin/vaadin-dialog": "2.6.0",
"@vaadin/vaadin-element-mixin": "2.4.2",
"@vaadin/vaadin-form-layout": "2.3.0",
"@vaadin/vaadin-grid": "5.9.5",
"@vaadin/vaadin-grid-pro": "2.3.0",
"@vaadin/vaadin-icons": "4.3.2",
"@vaadin/vaadin-item": "2.3.0",
"@vaadin/vaadin-list-box": "1.4.0",
"@vaadin/vaadin-list-mixin": "2.5.1",
"@vaadin/vaadin-login": "1.2.0",
"@vaadin/vaadin-lumo-styles": "1.6.1",
"@vaadin/vaadin-material-styles": "1.3.2",
"@vaadin/vaadin-menu-bar": "1.3.0",
"@vaadin/vaadin-messages": "1.0.2",
"@vaadin/vaadin-notification": "1.6.2",
"@vaadin/vaadin-ordered-layout": "1.4.0",
"@vaadin/vaadin-overlay": "3.5.1",
"@vaadin/vaadin-progress-bar": "1.3.0",
"@vaadin/vaadin-radio-button": "1.5.4",
"@vaadin/vaadin-rich-text-editor": "1.3.1",
"@vaadin/vaadin-select": "2.4.3",
"@vaadin/vaadin-split-layout": "4.3.1",
"@vaadin/vaadin-tabs": "3.2.0",
"@vaadin/vaadin-text-field": "2.9.2",
"@vaadin/vaadin-themable-mixin": "1.6.2",
"@vaadin/vaadin-time-picker": "2.4.0",
"@vaadin/vaadin-upload": "4.4.3",
"@vaadin/vaadin-usage-statistics": "2.1.2",
"@webcomponents/shadycss": "1.8.0",
"@webcomponents/webcomponentsjs": "^2.2.10",
"construct-style-sheets-polyfill": "3.0.4",
"element-match-media": "0.0.3",
"lit-element": "2.5.1",
"lit-html": "1.4.1",
"multiselect-combo-box": "2.4.2"
},
"devDependencies": {
"babel-loader": "8.2.2",
"chokidar": "^3.5.0",
"compression-webpack-plugin": "4.0.1",
"copy-webpack-plugin": "5.1.2",
"css-loader": "4.2.1",
"extra-watch-webpack-plugin": "1.0.3",
"extract-loader": "5.1.0",
"file-loader": "6.1.0",
"html-webpack-plugin": "4.5.2",
"lit-css-loader": "0.0.4",
"raw-loader": "3.1.0",
"ts-loader": "8.0.12",
"typescript": "4.0.3",
"webpack": "4.42.0",
"webpack-babel-multi-target-plugin": "2.5.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.11.0",
"webpack-merge": "4.2.2"
},
"hash": "f7df500811157da1d47e4c0e85c55e67496f12a1badee048e894be597acacea1"
}
}
8 changes: 8 additions & 0 deletions playwright/.flattened-pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>app.owlcms.playwright</groupId>
<artifactId>playwright</artifactId>
<version>4.22.0</version>
</project>
1 change: 1 addition & 0 deletions playwright/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target/
/cp.txt
Loading

0 comments on commit db04cf1

Please sign in to comment.