From 590fd2a3a181a043211abb3d46dc86cbab80db7b Mon Sep 17 00:00:00 2001 From: Graham Crockford Date: Mon, 9 Dec 2019 15:16:35 +0000 Subject: [PATCH] Update licence headers --- .../service/netty/NettyStreamingService.java | 17 +++++++++++++++++ .../main/java/org/knowm/xchange/dto/Order.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/account/Balance.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/marketdata/Trade.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/trade/LimitOrder.java | 17 +++++++++++++++++ .../knowm/xchange/dto/trade/MarketOrder.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/trade/StopOrder.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/trade/UserTrade.java | 17 +++++++++++++++++ .../marketdata/TestMarketDataApplication.java | 17 +++++++++++++++++ .../main/java/org/knowm/xchange/dto/Order.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/account/Balance.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/marketdata/Trade.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/trade/LimitOrder.java | 17 +++++++++++++++++ .../knowm/xchange/dto/trade/MarketOrder.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/trade/StopOrder.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/trade/UserTrade.java | 17 +++++++++++++++++ .../BackgroundProcessingConfiguration.java | 17 +++++++++++++++++ .../orko/BaseApplicationConfiguration.java | 17 +++++++++++++++++ .../orko/ChildProcessSupportModule.java | 17 +++++++++++++++++ .../java/com/gruelbox/orko/ServerProvider.java | 17 +++++++++++++++++ .../exchange/CachingPersistentPublisher.java | 17 +++++++++++++++++ .../orko/exchange/LifecycleListener.java | 17 +++++++++++++++++ .../exchange/MarketDataSubscriptionManager.java | 17 +++++++++++++++++ .../orko/exchange/PersistentPublisher.java | 17 +++++++++++++++++ .../exchange/RemoteMarketDataConfiguration.java | 17 +++++++++++++++++ .../orko/exchange/RemoteTradeService.java | 17 +++++++++++++++++ .../orko/exchange/SubscriptionController.java | 17 +++++++++++++++++ .../SubscriptionControllerRemoteImpl.java | 17 +++++++++++++++++ .../orko/job/script/ScriptConfiguration.java | 17 +++++++++++++++++ .../OrkoWebsocketStreamingService.java | 17 +++++++++++++++++ .../service/netty/NettyStreamingService.java | 17 +++++++++++++++++ .../main/java/org/knowm/xchange/dto/Order.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/account/Balance.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/marketdata/Trade.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/trade/LimitOrder.java | 17 +++++++++++++++++ .../knowm/xchange/dto/trade/MarketOrder.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/trade/StopOrder.java | 17 +++++++++++++++++ .../org/knowm/xchange/dto/trade/UserTrade.java | 17 +++++++++++++++++ .../com/gruelbox/orko/integration/Fork.java | 17 +++++++++++++++++ .../orko/integration/TestAllServices.java | 17 +++++++++++++++++ orko-semantic/pom.xml | 11 +++++------ orko-semantic/semantic.json | 2 +- .../craco-plugin-remove-module-scope-plugin.js | 17 +++++++++++++++++ orko-ui/craco.config.js | 17 +++++++++++++++++ start-my.sh | 2 ++ 45 files changed, 722 insertions(+), 7 deletions(-) create mode 100644 start-my.sh diff --git a/orko-app-marketdata/src/main/java/info/bitrich/xchangestream/service/netty/NettyStreamingService.java b/orko-app-marketdata/src/main/java/info/bitrich/xchangestream/service/netty/NettyStreamingService.java index 9c5593a46..a086fd9f2 100644 --- a/orko-app-marketdata/src/main/java/info/bitrich/xchangestream/service/netty/NettyStreamingService.java +++ b/orko-app-marketdata/src/main/java/info/bitrich/xchangestream/service/netty/NettyStreamingService.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package info.bitrich.xchangestream.service.netty; import java.io.IOException; diff --git a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/Order.java b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/Order.java index d540c4cf9..540085e1d 100644 --- a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/Order.java +++ b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/Order.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto; import com.fasterxml.jackson.annotation.JsonIgnore; diff --git a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/account/Balance.java b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/account/Balance.java index 12c1bcce2..66aa742ba 100644 --- a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/account/Balance.java +++ b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/account/Balance.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.account; import com.fasterxml.jackson.annotation.JsonIgnore; diff --git a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java index 75fb34c8d..d16bc6936 100644 --- a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java +++ b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.marketdata; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; diff --git a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java index adfa864d0..66397db1d 100644 --- a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java +++ b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java index 4d505488e..f280c53ca 100644 --- a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java +++ b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java index fca3ed464..96307e787 100644 --- a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java +++ b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java index 6bc28663c..9ad7833be 100644 --- a/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java +++ b/orko-app-marketdata/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; diff --git a/orko-app-marketdata/src/test/java/com/gruelbox/orko/app/marketdata/TestMarketDataApplication.java b/orko-app-marketdata/src/test/java/com/gruelbox/orko/app/marketdata/TestMarketDataApplication.java index 0b72e55af..1b4102228 100644 --- a/orko-app-marketdata/src/test/java/com/gruelbox/orko/app/marketdata/TestMarketDataApplication.java +++ b/orko-app-marketdata/src/test/java/com/gruelbox/orko/app/marketdata/TestMarketDataApplication.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.app.marketdata; import static org.hamcrest.Matchers.comparesEqualTo; diff --git a/orko-app/src/main/java/org/knowm/xchange/dto/Order.java b/orko-app/src/main/java/org/knowm/xchange/dto/Order.java index d540c4cf9..540085e1d 100644 --- a/orko-app/src/main/java/org/knowm/xchange/dto/Order.java +++ b/orko-app/src/main/java/org/knowm/xchange/dto/Order.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto; import com.fasterxml.jackson.annotation.JsonIgnore; diff --git a/orko-app/src/main/java/org/knowm/xchange/dto/account/Balance.java b/orko-app/src/main/java/org/knowm/xchange/dto/account/Balance.java index 12c1bcce2..66aa742ba 100644 --- a/orko-app/src/main/java/org/knowm/xchange/dto/account/Balance.java +++ b/orko-app/src/main/java/org/knowm/xchange/dto/account/Balance.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.account; import com.fasterxml.jackson.annotation.JsonIgnore; diff --git a/orko-app/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java b/orko-app/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java index 75fb34c8d..d16bc6936 100644 --- a/orko-app/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java +++ b/orko-app/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.marketdata; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; diff --git a/orko-app/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java b/orko-app/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java index adfa864d0..66397db1d 100644 --- a/orko-app/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java +++ b/orko-app/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/orko-app/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java b/orko-app/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java index 4d505488e..f280c53ca 100644 --- a/orko-app/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java +++ b/orko-app/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/orko-app/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java b/orko-app/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java index fca3ed464..96307e787 100644 --- a/orko-app/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java +++ b/orko-app/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import com.fasterxml.jackson.annotation.JsonCreator; diff --git a/orko-app/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java b/orko-app/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java index 6bc28663c..9ad7833be 100644 --- a/orko-app/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java +++ b/orko-app/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; diff --git a/orko-base/src/main/java/com/gruelbox/orko/wiring/BackgroundProcessingConfiguration.java b/orko-base/src/main/java/com/gruelbox/orko/wiring/BackgroundProcessingConfiguration.java index 1560b9380..6658d784d 100644 --- a/orko-base/src/main/java/com/gruelbox/orko/wiring/BackgroundProcessingConfiguration.java +++ b/orko-base/src/main/java/com/gruelbox/orko/wiring/BackgroundProcessingConfiguration.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.wiring; public interface BackgroundProcessingConfiguration { diff --git a/orko-common/src/main/java/com/gruelbox/orko/BaseApplicationConfiguration.java b/orko-common/src/main/java/com/gruelbox/orko/BaseApplicationConfiguration.java index c9a67ba29..4b1f251a5 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/BaseApplicationConfiguration.java +++ b/orko-common/src/main/java/com/gruelbox/orko/BaseApplicationConfiguration.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko; /** diff --git a/orko-common/src/main/java/com/gruelbox/orko/ChildProcessSupportModule.java b/orko-common/src/main/java/com/gruelbox/orko/ChildProcessSupportModule.java index e857e72b3..3affec2ed 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/ChildProcessSupportModule.java +++ b/orko-common/src/main/java/com/gruelbox/orko/ChildProcessSupportModule.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko; import java.util.concurrent.ExecutorService; diff --git a/orko-common/src/main/java/com/gruelbox/orko/ServerProvider.java b/orko-common/src/main/java/com/gruelbox/orko/ServerProvider.java index 0e625414f..ac7d40fe4 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/ServerProvider.java +++ b/orko-common/src/main/java/com/gruelbox/orko/ServerProvider.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko; import org.eclipse.jetty.server.Server; diff --git a/orko-common/src/main/java/com/gruelbox/orko/exchange/CachingPersistentPublisher.java b/orko-common/src/main/java/com/gruelbox/orko/exchange/CachingPersistentPublisher.java index de1046e31..4207346b3 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/exchange/CachingPersistentPublisher.java +++ b/orko-common/src/main/java/com/gruelbox/orko/exchange/CachingPersistentPublisher.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.exchange; import java.util.HashSet; diff --git a/orko-common/src/main/java/com/gruelbox/orko/exchange/LifecycleListener.java b/orko-common/src/main/java/com/gruelbox/orko/exchange/LifecycleListener.java index 295923be1..cc427f8c0 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/exchange/LifecycleListener.java +++ b/orko-common/src/main/java/com/gruelbox/orko/exchange/LifecycleListener.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.exchange; /** diff --git a/orko-common/src/main/java/com/gruelbox/orko/exchange/MarketDataSubscriptionManager.java b/orko-common/src/main/java/com/gruelbox/orko/exchange/MarketDataSubscriptionManager.java index b878f8b36..9068c4e4e 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/exchange/MarketDataSubscriptionManager.java +++ b/orko-common/src/main/java/com/gruelbox/orko/exchange/MarketDataSubscriptionManager.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.exchange; import org.knowm.xchange.dto.Order; diff --git a/orko-common/src/main/java/com/gruelbox/orko/exchange/PersistentPublisher.java b/orko-common/src/main/java/com/gruelbox/orko/exchange/PersistentPublisher.java index 7e1212859..6a5f406fa 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/exchange/PersistentPublisher.java +++ b/orko-common/src/main/java/com/gruelbox/orko/exchange/PersistentPublisher.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.exchange; import java.util.concurrent.atomic.AtomicReference; diff --git a/orko-common/src/main/java/com/gruelbox/orko/exchange/RemoteMarketDataConfiguration.java b/orko-common/src/main/java/com/gruelbox/orko/exchange/RemoteMarketDataConfiguration.java index f5e8fbac4..f9f765bdf 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/exchange/RemoteMarketDataConfiguration.java +++ b/orko-common/src/main/java/com/gruelbox/orko/exchange/RemoteMarketDataConfiguration.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.exchange; import org.apache.commons.lang3.StringUtils; diff --git a/orko-common/src/main/java/com/gruelbox/orko/exchange/RemoteTradeService.java b/orko-common/src/main/java/com/gruelbox/orko/exchange/RemoteTradeService.java index 526d832a4..0d7ba7afc 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/exchange/RemoteTradeService.java +++ b/orko-common/src/main/java/com/gruelbox/orko/exchange/RemoteTradeService.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.exchange; import java.io.IOException; diff --git a/orko-common/src/main/java/com/gruelbox/orko/exchange/SubscriptionController.java b/orko-common/src/main/java/com/gruelbox/orko/exchange/SubscriptionController.java index fa166fb3c..f19eab084 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/exchange/SubscriptionController.java +++ b/orko-common/src/main/java/com/gruelbox/orko/exchange/SubscriptionController.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.exchange; import java.util.Set; diff --git a/orko-common/src/main/java/com/gruelbox/orko/exchange/SubscriptionControllerRemoteImpl.java b/orko-common/src/main/java/com/gruelbox/orko/exchange/SubscriptionControllerRemoteImpl.java index 73fe998f2..fd28f3f6b 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/exchange/SubscriptionControllerRemoteImpl.java +++ b/orko-common/src/main/java/com/gruelbox/orko/exchange/SubscriptionControllerRemoteImpl.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.exchange; import java.util.Set; diff --git a/orko-common/src/main/java/com/gruelbox/orko/job/script/ScriptConfiguration.java b/orko-common/src/main/java/com/gruelbox/orko/job/script/ScriptConfiguration.java index 05daefd47..a6e253373 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/job/script/ScriptConfiguration.java +++ b/orko-common/src/main/java/com/gruelbox/orko/job/script/ScriptConfiguration.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.job.script; public interface ScriptConfiguration { diff --git a/orko-common/src/main/java/com/gruelbox/orko/websocket/OrkoWebsocketStreamingService.java b/orko-common/src/main/java/com/gruelbox/orko/websocket/OrkoWebsocketStreamingService.java index 41ea1ebf0..dcbbfb20a 100644 --- a/orko-common/src/main/java/com/gruelbox/orko/websocket/OrkoWebsocketStreamingService.java +++ b/orko-common/src/main/java/com/gruelbox/orko/websocket/OrkoWebsocketStreamingService.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.websocket; import static com.gruelbox.orko.exchange.MarketDataType.BALANCE; diff --git a/orko-integration-testing/src/main/java/info/bitrich/xchangestream/service/netty/NettyStreamingService.java b/orko-integration-testing/src/main/java/info/bitrich/xchangestream/service/netty/NettyStreamingService.java index 9c5593a46..a086fd9f2 100644 --- a/orko-integration-testing/src/main/java/info/bitrich/xchangestream/service/netty/NettyStreamingService.java +++ b/orko-integration-testing/src/main/java/info/bitrich/xchangestream/service/netty/NettyStreamingService.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package info.bitrich.xchangestream.service.netty; import java.io.IOException; diff --git a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/Order.java b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/Order.java index fac651c21..86a6aedb5 100644 --- a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/Order.java +++ b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/Order.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto; import java.io.Serializable; diff --git a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/account/Balance.java b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/account/Balance.java index dfcc6e211..4cd012742 100644 --- a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/account/Balance.java +++ b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/account/Balance.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.account; import java.io.Serializable; diff --git a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java index a66e6da25..dca4cda64 100644 --- a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java +++ b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/marketdata/Trade.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.marketdata; import java.io.Serializable; diff --git a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java index 912e9bb1c..f040a9fc1 100644 --- a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java +++ b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/LimitOrder.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import java.math.BigDecimal; diff --git a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java index 3bcba84bd..5543a562e 100644 --- a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java +++ b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/MarketOrder.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import java.math.BigDecimal; diff --git a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java index d04d5d565..069017248 100644 --- a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java +++ b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/StopOrder.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import java.math.BigDecimal; diff --git a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java index 409b0f8cd..23a1f88e8 100644 --- a/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java +++ b/orko-integration-testing/src/main/java/org/knowm/xchange/dto/trade/UserTrade.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package org.knowm.xchange.dto.trade; import java.math.BigDecimal; diff --git a/orko-integration-testing/src/test/java/com/gruelbox/orko/integration/Fork.java b/orko-integration-testing/src/test/java/com/gruelbox/orko/integration/Fork.java index 1ff44f84b..668a2fea9 100644 --- a/orko-integration-testing/src/test/java/com/gruelbox/orko/integration/Fork.java +++ b/orko-integration-testing/src/test/java/com/gruelbox/orko/integration/Fork.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.integration; import java.io.File; diff --git a/orko-integration-testing/src/test/java/com/gruelbox/orko/integration/TestAllServices.java b/orko-integration-testing/src/test/java/com/gruelbox/orko/integration/TestAllServices.java index 86d59e054..b4626c800 100644 --- a/orko-integration-testing/src/test/java/com/gruelbox/orko/integration/TestAllServices.java +++ b/orko-integration-testing/src/test/java/com/gruelbox/orko/integration/TestAllServices.java @@ -1,3 +1,20 @@ +/** + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ package com.gruelbox.orko.integration; import static io.dropwizard.testing.ResourceHelpers.resourceFilePath; diff --git a/orko-semantic/pom.xml b/orko-semantic/pom.xml index bbc13826e..818ca3af5 100644 --- a/orko-semantic/pom.xml +++ b/orko-semantic/pom.xml @@ -19,12 +19,11 @@ com.mycila license-maven-plugin - - - disabled - none - - + + + ** + + diff --git a/orko-semantic/semantic.json b/orko-semantic/semantic.json index 327f271b8..1536d87cd 100644 --- a/orko-semantic/semantic.json +++ b/orko-semantic/semantic.json @@ -19,5 +19,5 @@ "autoInstall": false, "rtl": false, "components": ["reset", "site", "button", "container", "divider", "flag", "header", "icon", "image", "input", "label", "list", "loader", "placeholder", "rail", "reveal", "segment", "step", "breadcrumb", "form", "grid", "menu", "message", "table", "ad", "card", "comment", "feed", "item", "statistic", "accordion", "checkbox", "dimmer", "dropdown", "embed", "modal", "nag", "popup", "progress", "rating", "search", "shape", "sidebar", "sticky", "tab", "transition", "api", "form", "state", "visibility"], - "version": "2.7.8" + "version": "2.8.2" } \ No newline at end of file diff --git a/orko-ui/craco-plugin-remove-module-scope-plugin.js b/orko-ui/craco-plugin-remove-module-scope-plugin.js index 8326c9f13..7946aaf15 100644 --- a/orko-ui/craco-plugin-remove-module-scope-plugin.js +++ b/orko-ui/craco-plugin-remove-module-scope-plugin.js @@ -1,3 +1,20 @@ +/* + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ module.exports = { overrideWebpackConfig: ({ webpackConfig, diff --git a/orko-ui/craco.config.js b/orko-ui/craco.config.js index a76b3c148..09d00172a 100644 --- a/orko-ui/craco.config.js +++ b/orko-ui/craco.config.js @@ -1,3 +1,20 @@ +/* + * Orko + * Copyright © 2018-2019 Graham Crockford + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ const path = require("path") const removeModuleScopePlugin = require("./craco-plugin-remove-module-scope-plugin") diff --git a/start-my.sh b/start-my.sh new file mode 100644 index 000000000..5d307f3bb --- /dev/null +++ b/start-my.sh @@ -0,0 +1,2 @@ +#!/bin/bash +java -jar ./orko-app/target/orko-app.jar server ./orko-app/my-config.yml