For example, you can have a mvn-repo project created.
For example, into ~/workspace/mvn-repo folder
In order to do this, you will need to have the following snippet in your pom.xml file
| function mergeObject(target) { | |
| for (var i = 1; i < arguments.length; i++) { | |
| var source = arguments[i]; | |
| for (var key in source) { | |
| if (source.hasOwnProperty(key)) { | |
| target[key] = source[key]; | |
| } | |
| } | |
| } | |
| return target; |
| "use strict"; | |
| document.getElementById("file-upload-form").addEventListener("submit", (e) => { | |
| e.preventDefault(); | |
| this.inputElement = []; | |
| this.iframeName = "uploader-facade"; | |
| this.form = document.createElement("form"); | |
| this.iframe = document.createElement("iframe"); |
| <!-- Create a new XML file toolbar.xml in directory res/layouts --> | |
| <LinearLayout | |
| xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:app="http://schemas.android.com/apk/res-auto" | |
| android:layout_width="match_parent" | |
| android:layout_height="wrap_content" | |
| android:orientation="vertical"> | |
| <android.support.v7.widget.Toolbar |
| input { | |
| outline: none; | |
| padding: 12px; | |
| border-radius: 3px; | |
| border: 1px solid black; | |
| } | |
| ::-webkit-input-placeholder { /* Chrome */ | |
| color: red; | |
| transition: opacity 250ms ease-in-out; | |
| } |
| import 'package:cartenz_djp/style/colors.dart'; | |
| import 'package:cartenz_djp/widget/override/customTabs.dart' as Tabs; | |
| import 'package:flutter/material.dart'; | |
| class ExampleWidget extends StatefulWidget { | |
| @override | |
| State<StatefulWidget> createState() => ExampleState(); | |
| } | |
| class ExampleState extends State<ExampleWidget> { |
| ssh-keygen -t rsa -b 4096 -m PEM -f jwtRS256.key | |
| # Don't add passphrase | |
| openssl rsa -in jwtRS256.key -pubout -outform PEM -out jwtRS256.key.pub | |
| cat jwtRS256.key | |
| cat jwtRS256.key.pub |
| import org.apache.http.client.HttpClient; | |
| import org.apache.http.client.config.CookieSpecs; | |
| import org.apache.http.client.config.RequestConfig; | |
| import org.apache.http.impl.client.CloseableHttpClient; | |
| import org.apache.http.impl.client.HttpClients; | |
| import org.apache.http.impl.conn.PoolingHttpClientConnectionManager; | |
| import org.springframework.beans.factory.annotation.Autowired; | |
| import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean; | |
| import org.springframework.boot.context.properties.EnableConfigurationProperties; | |
| import org.springframework.boot.web.client.RestTemplateCustomizer; |
For example, you can have a mvn-repo project created.
For example, into ~/workspace/mvn-repo folder
In order to do this, you will need to have the following snippet in your pom.xml file