This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dockerfile to create a Mendix Docker image based on either the source code or | |
# Mendix Deployment Archive (aka mda file) | |
# | |
# Author: Mendix Digital Ecosystems, [email protected] | |
# Version: 2.0.0 | |
FROM mxclyde/rootfs:bionic as builder | |
LABEL Author="Mendix Digital Ecosystems" | |
LABEL maintainer="[email protected]" | |
# Build-time variables |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Dockerfile to create a Mendix Docker image based on either the source code or | |
# Mendix Deployment Archive (aka mda file) | |
# | |
# Author: Mendix Digital Ecosystems, [email protected] | |
# Version: 2.0.0 | |
ARG ROOTFS_IMAGE=mxclyde/rootfs:bionic | |
FROM ${ROOTFS_IMAGE} as builder | |
LABEL Author="Mendix Digital Ecosystems" | |
LABEL maintainer="[email protected]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const webpack = require("webpack"); | |
const path = require("path"); | |
const CopyWebpackPlugin = require("copy-webpack-plugin"); | |
const variables = require("@mendix/pluggable-widgets-tools/configs/variables"); | |
const packagePath = variables.package.packagePath.replace(/\./g, "/"); | |
const widgetName = variables.package.widgetName; | |
const name = widgetName.toLowerCase(); | |
const widgetConfig = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This file was generated by Mendix Studio Pro. | |
// | |
// WARNING: Only the following code will be retained when actions are regenerated: | |
// - the import list | |
// - the code between BEGIN USER CODE and END USER CODE | |
// - the code between BEGIN EXTRA CODE and END EXTRA CODE | |
// Other code you write will be lost the next time you deploy the project. | |
import { Big } from "big.js"; | |
// BEGIN EXTRA CODE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package imap_pop3_email.actions; | |
import imap_pop3_email.proxies.Attachment; | |
import imap_pop3_email.proxies.AttachmentPosition; | |
import imap_pop3_email.proxies.EmailAccount; | |
import imap_pop3_email.proxies.EmailMessage; | |
import java.io.ByteArrayOutputStream; | |
import java.io.IOException; | |
import java.io.InputStream; |