You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by jb...@apache.org on 2018/03/06 18:25:22 UTC

[1/2] activemq-artemis git commit: ARTEMIS-1723 Migrate AMQP C# examples to the common .NET version

Repository: activemq-artemis
Updated Branches:
  refs/heads/master 315c1e4c5 -> a1c39cdad


ARTEMIS-1723 Migrate AMQP C# examples to the common .NET version


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/43759790
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/43759790
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/43759790

Branch: refs/heads/master
Commit: 43759790ae3feb3e05ab335759c6978f64198270
Parents: 315c1e4
Author: Dmitry Volodin <dm...@gmail.com>
Authored: Fri Mar 2 13:50:26 2018 +0300
Committer: Justin Bertram <jb...@apache.org>
Committed: Tue Mar 6 12:12:11 2018 -0600

----------------------------------------------------------------------
 .gitignore                                      |  2 ++
 examples/common/prettify.css                    |  0
 examples/common/prettify.js                     |  0
 .../amqp/dotnet/DurableSubscriptions/Program.cs |  0
 .../DurableSubscriptions/amqp-durables.csproj   |  6 ++--
 .../dotnet/DurableSubscriptions/stop-broker.sh  | 21 ++++++++++++
 .../amqp/dotnet/HelloWorld/HelloWorld.csproj    | 31 +++++++++++++++++
 .../protocols/amqp/dotnet/HelloWorld/Program.cs |  0
 .../amqp/dotnet/HelloWorld/project.json         | 36 --------------------
 .../amqp/dotnet/HelloWorld/start-broker.sh      |  2 +-
 .../amqp/dotnet/HelloWorld/stop-broker.sh       | 21 ++++++++++++
 11 files changed, 79 insertions(+), 40 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/.gitignore
----------------------------------------------------------------------
diff --git a/.gitignore b/.gitignore
index 3727d45..9d067b7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,8 @@
 **/*.iml
 **/nb-configuration.xml
 **/target
+**/bin
+**/obj
 .idea/
 ratReport.txt
 **/server.lock

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/examples/common/prettify.css
----------------------------------------------------------------------
diff --git a/examples/common/prettify.css b/examples/common/prettify.css
old mode 100755
new mode 100644

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/examples/common/prettify.js
----------------------------------------------------------------------
diff --git a/examples/common/prettify.js b/examples/common/prettify.js
old mode 100755
new mode 100644

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/examples/protocols/amqp/dotnet/DurableSubscriptions/Program.cs
----------------------------------------------------------------------
diff --git a/examples/protocols/amqp/dotnet/DurableSubscriptions/Program.cs b/examples/protocols/amqp/dotnet/DurableSubscriptions/Program.cs
old mode 100755
new mode 100644

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/examples/protocols/amqp/dotnet/DurableSubscriptions/amqp-durables.csproj
----------------------------------------------------------------------
diff --git a/examples/protocols/amqp/dotnet/DurableSubscriptions/amqp-durables.csproj b/examples/protocols/amqp/dotnet/DurableSubscriptions/amqp-durables.csproj
old mode 100755
new mode 100644
index f8c568b..ce383a3
--- a/examples/protocols/amqp/dotnet/DurableSubscriptions/amqp-durables.csproj
+++ b/examples/protocols/amqp/dotnet/DurableSubscriptions/amqp-durables.csproj
@@ -14,12 +14,12 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 -->
-<Project Sdk="Microsoft.NET.Sdk">
+<Project Sdk="Microsoft.NET.Sdk">
   <PropertyGroup>
     <OutputType>Exe</OutputType>
-    <TargetFramework>netcoreapp1.1</TargetFramework>
+    <TargetFramework>netcoreapp2.0</TargetFramework>
   </PropertyGroup>
   <ItemGroup>
-    <PackageReference Include="AMQPNetLite.Core" Version="2.0.0-pre" />
+    <PackageReference Include="AMQPNetLite" Version="2.1.1" />
   </ItemGroup>
 </Project>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/examples/protocols/amqp/dotnet/DurableSubscriptions/stop-broker.sh
----------------------------------------------------------------------
diff --git a/examples/protocols/amqp/dotnet/DurableSubscriptions/stop-broker.sh b/examples/protocols/amqp/dotnet/DurableSubscriptions/stop-broker.sh
new file mode 100755
index 0000000..b224e61
--- /dev/null
+++ b/examples/protocols/amqp/dotnet/DurableSubscriptions/stop-broker.sh
@@ -0,0 +1,21 @@
+#!/usr/bin/env sh
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you 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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# if you are using a source distribution you will have to stop the broker manually
+# Use this as a reference!
+./server1/bin/artemis-service stop

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/examples/protocols/amqp/dotnet/HelloWorld/HelloWorld.csproj
----------------------------------------------------------------------
diff --git a/examples/protocols/amqp/dotnet/HelloWorld/HelloWorld.csproj b/examples/protocols/amqp/dotnet/HelloWorld/HelloWorld.csproj
new file mode 100644
index 0000000..3a294f3
--- /dev/null
+++ b/examples/protocols/amqp/dotnet/HelloWorld/HelloWorld.csproj
@@ -0,0 +1,31 @@
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You 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,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+
+<Project Sdk="Microsoft.NET.Sdk">
+
+  <PropertyGroup>
+    <TargetFramework>netcoreapp2.0</TargetFramework>
+    <AssemblyName>HelloWorld</AssemblyName>
+    <OutputType>Exe</OutputType>
+    <PackageId>HelloWorld</PackageId>
+  </PropertyGroup>
+
+  <ItemGroup>
+    <PackageReference Include="AMQPNetLite" Version="2.1.1" />
+  </ItemGroup>
+
+</Project>

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/examples/protocols/amqp/dotnet/HelloWorld/Program.cs
----------------------------------------------------------------------
diff --git a/examples/protocols/amqp/dotnet/HelloWorld/Program.cs b/examples/protocols/amqp/dotnet/HelloWorld/Program.cs
old mode 100755
new mode 100644

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/examples/protocols/amqp/dotnet/HelloWorld/project.json
----------------------------------------------------------------------
diff --git a/examples/protocols/amqp/dotnet/HelloWorld/project.json b/examples/protocols/amqp/dotnet/HelloWorld/project.json
deleted file mode 100755
index 7df8f24..0000000
--- a/examples/protocols/amqp/dotnet/HelloWorld/project.json
+++ /dev/null
@@ -1,36 +0,0 @@
-/**
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-{
-  "version": "1.0.0-*",
-  "buildOptions": {
-    "debugType": "portable",
-    "emitEntryPoint": true
-  },
-  "dependencies": {"AMQPNetLite": "1.2.2"},
-  "frameworks": {
-    "netcoreapp1.1": {
-      "dependencies": {
-        "Microsoft.NETCore.App": {
-          "type": "platform",
-          "version": "1.1.0"
-        }
-      },
-      "imports": "dnxcore50"
-    }
-  }
-}

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/examples/protocols/amqp/dotnet/HelloWorld/start-broker.sh
----------------------------------------------------------------------
diff --git a/examples/protocols/amqp/dotnet/HelloWorld/start-broker.sh b/examples/protocols/amqp/dotnet/HelloWorld/start-broker.sh
index 1f193da..114592a 100755
--- a/examples/protocols/amqp/dotnet/HelloWorld/start-broker.sh
+++ b/examples/protocols/amqp/dotnet/HelloWorld/start-broker.sh
@@ -18,5 +18,5 @@
 
 # if you are using a source distribution you will have to create and start the broker manually
 # Use this as a reference!
-../../../../bin/artemis create ./server1 --user a --password a --role a --allow-anonymous --force
+../../../../../bin/artemis create ./server1 --user a --password a --role a --allow-anonymous --force
 ./server1/bin/artemis-service start

http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/43759790/examples/protocols/amqp/dotnet/HelloWorld/stop-broker.sh
----------------------------------------------------------------------
diff --git a/examples/protocols/amqp/dotnet/HelloWorld/stop-broker.sh b/examples/protocols/amqp/dotnet/HelloWorld/stop-broker.sh
new file mode 100755
index 0000000..b224e61
--- /dev/null
+++ b/examples/protocols/amqp/dotnet/HelloWorld/stop-broker.sh
@@ -0,0 +1,21 @@
+#!/usr/bin/env sh
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you 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, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+# if you are using a source distribution you will have to stop the broker manually
+# Use this as a reference!
+./server1/bin/artemis-service stop


[2/2] activemq-artemis git commit: This closes #1919

Posted by jb...@apache.org.
This closes #1919


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/a1c39cda
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/a1c39cda
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/a1c39cda

Branch: refs/heads/master
Commit: a1c39cdaddee77e5c5665f41f3e74e4ccad4393f
Parents: 315c1e4 4375979
Author: Justin Bertram <jb...@apache.org>
Authored: Tue Mar 6 12:12:12 2018 -0600
Committer: Justin Bertram <jb...@apache.org>
Committed: Tue Mar 6 12:12:12 2018 -0600

----------------------------------------------------------------------
 .gitignore                                      |  2 ++
 examples/common/prettify.css                    |  0
 examples/common/prettify.js                     |  0
 .../amqp/dotnet/DurableSubscriptions/Program.cs |  0
 .../DurableSubscriptions/amqp-durables.csproj   |  6 ++--
 .../dotnet/DurableSubscriptions/stop-broker.sh  | 21 ++++++++++++
 .../amqp/dotnet/HelloWorld/HelloWorld.csproj    | 31 +++++++++++++++++
 .../protocols/amqp/dotnet/HelloWorld/Program.cs |  0
 .../amqp/dotnet/HelloWorld/project.json         | 36 --------------------
 .../amqp/dotnet/HelloWorld/start-broker.sh      |  2 +-
 .../amqp/dotnet/HelloWorld/stop-broker.sh       | 21 ++++++++++++
 11 files changed, 79 insertions(+), 40 deletions(-)
----------------------------------------------------------------------