Skip to content

Instantly share code, notes, and snippets.

View masterdany88's full-sized avatar

Daniel Korbel masterdany88

View GitHub Profile
@masterdany88
masterdany88 / pom.xml
Created July 18, 2018 19:38
gwt gmd build with errai
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>pl.korbeldaniel.erp2</groupId>
<artifactId>micSupp</artifactId>
<version>0.1.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
daniel@pc:~/git/erp2/micSupp/ui$ mvn clean install
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building micSuppUi 0.1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ micSuppUi ---
[INFO] Deleting /home/daniel/git/erp2/micSupp/ui/src/main/webapp/WEB-INF/classes
[INFO] Deleting /home/daniel/git/erp2/micSupp/ui (includes = [src/gen/, src/main/webapp/app/, src/main/webapp/WEB-INF/deploy/, src/main/webapp/WEB-INF/lib/, src/main/webapp/WEB-INF/classes/**/*.*, src/main/webapp/WEB-INF/classes/**/*, src/main/webapp/WEB-INF/classes, **/gwt-unitCache/**, .errai/], excludes = [])
@masterdany88
masterdany88 / gist:d5e4aaa6b2f0c8084cfc8c8049285cc3
Created July 18, 2018 19:59
target/micSuppUi-0.1.0-SNAPSHOT
aniel@pc:~/git/erp2/micSupp/ui/target/micSuppUi-0.1.0-SNAPSHOT$ tree
.
├── App
│   ├── 07C12E3BEFFB27FD82A0EE8AE681F083.cache.js
│   ├── App.devmode.js
│   ├── App.nocache.js
│   ├── clear.cache.gif
│   ├── compilation-mappings.txt
│   ├── css
│   │   ├── animation.css
daniel@pc:~/git/erp2/micSupp/ui/src/main/webapp$ tree
.
├── App
│   ├── App.nocache.js
│   ├── clear.cache.gif
│   ├── css
│   │   ├── animation.css
│   │   ├── material-icons.css
│   │   ├── materialize.amber.css
│   │   ├── materialize.blue.css
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
@masterdany88
masterdany88 / update_git_repos.sh
Created January 16, 2019 06:26 — forked from douglas/update_git_repos.sh
Update all git repositories under a base directory
#!/bin/bash
# store the current dir
CUR_DIR=$(pwd)
# Let the person running the script know what's going on.
echo "\n\033[1mPulling in latest changes for all repositories...\033[0m\n"
# Find all git repositories and update it to the master latest revision
for i in $(find . -name ".git" | cut -c 3-); do
> Task :client:dependencies
------------------------------------------------------------
Project :client
------------------------------------------------------------
annotationProcessor - Annotation processors and their dependencies for source set 'main'.
+--- com.github.nalukit:nalu-processor:2.0.1-SNAPSHOT
| +--- com.github.nalukit:nalu:2.0.1-SNAPSHOT
Length Date Time Name
--------- ---------- ----- ----
98 2020-02-04 09:49 META-INF/MANIFEST.MF
0 2020-02-04 09:49 META-INF/
0 2018-11-21 15:25 org/
0 2018-11-21 15:25 org/gwtproject/
0 2018-11-21 15:25 org/gwtproject/editor/
0 2020-02-04 09:49 org/gwtproject/editor/client/
0 2020-02-04 09:49 org/gwtproject/editor/client/impl/
0 2020-02-04 09:49 org/gwtproject/editor/client/annotation/
✘ daniel@daniel-core  ~/tutorials/clean_architecture_tutorial   master ●  ./gradlew clean compileGwt --info
Initialized native services in: /home/daniel/.gradle/native
The client will now receive all logging from the daemon (pid: 29718). The daemon log file: /home/daniel/.gradle/daemon/6.1.1/daemon-29718.out.log
Starting 7th build in daemon [uptime: 8 mins 27.043 secs, performance: 99%, non-heap usage: 27% of 268.4 MB]
Using 8 worker leases.
Starting Build
Settings evaluated using settings file '/home/daniel/tutorials/clean_architecture_tutorial/settings.gradle'.
Projects loaded. Root project using build file '/home/daniel/tutorials/clean_architecture_tutorial/build.gradle'.
Included projects: [root project 'root', project ':api', project ':client', project ':server']
public interface UserModel {
Long getId();
String getFirstName();
String getLastName();
String getEmail();
int getAge();
String getPhone();
boolean isActive();
}